Viewing 15 posts - 46 through 60 (of 147 total)
By no means elegant and I have not tested this with any other data than what you have provided but it does give you the expected results based on what...
April 9, 2014 at 6:28 am
I have had a quick look at this and need to ask:
Your desired output
YYY Ret1 35
YYY 25
Where and...
April 9, 2014 at 3:01 am
=format(Globals!ExecutionTime,"MMM dd,yyyy - HH:mm tt")
That should do the trick
April 2, 2014 at 9:02 am
A quick search of google threw up this:
http://support.microsoft.com/kb/913384
Have you tried this? If so, could you detail what you have tried please?
April 2, 2014 at 8:52 am
This is normal behaviour. I have just tried this and removed the sum, what you get is basically the first value it comes across in the dataset.
However,...
April 2, 2014 at 8:43 am
Only way I can think of is:
Assign the dataset in question to a tablix.
Set Row Group to Flag2 field.
Filter the tablix on the value you want to see (SD)
Put in...
April 2, 2014 at 8:00 am
examples below:
=First(Fields!AField.Value, "DataSet3")
=Sum(Fields!ANotherField.Value, "DataSet3")
looking at your expression though I honestly don't think you can get that to work as you asking it to take an average if something equals SD...
April 2, 2014 at 7:07 am
Do you by chance have a grouping set up on the tablix?
April 2, 2014 at 6:55 am
Are the parameters for the report pre-filled? If so, the queries which support those how are they performing?
April 1, 2014 at 3:50 am
the above question aside, based on what you asked for the following appears to work
=format(int(ReportItems!MyDecimalTotal.Value) + int(round(reportitems!MyDecimalTotal.value mod int(reportitems!MyDecimalTotal.value),2)*100)/60,"000") + " hours " + format(round((ReportItems!MyDecimalTotal.Value - int(ReportItems!MyDecimalTotal.Value))*100,0) mod 60,"00") +...
April 1, 2014 at 3:47 am
How is this stored in your DB? Are hours and minutes separate columns as there may be an issue with summing up values in this way?
April 1, 2014 at 3:32 am
free_mascot (3/20/2014)
March 21, 2014 at 10:24 am
We do it this way with no problems:
Have an ftp program sitting on the server somewhere (we use psftp)
Have a script task script out the FTP commands we want to...
March 12, 2014 at 5:25 am
having a quick look I can't see how your update queries will work but that said:
If there is more than one entry in Table 1 how do we identify what...
March 7, 2014 at 9:39 am
Actually this way seems to work also
DECLARE @Client_Domains TABLE
(
Client_VndName NVARCHAR(100) ,
Client_Type NVARCHAR(100) ,
...
March 7, 2014 at 8:46 am
Viewing 15 posts - 46 through 60 (of 147 total)