Viewing 15 posts - 16 through 30 (of 1,345 total)
Weird, its gotta be something silly.
Can you post a small sample of your dataset.
It seems fishy that the field your looking is named TranTypeID.Value, but your comparing it to Text...
May 6, 2013 at 11:28 am
I think this will help.
Try wrapping the sum outside the iif
=SUM(iif(Fields!TrantypeID.Value = "INT",Fields!DrAmt,0))
May 6, 2013 at 11:00 am
Looking at your dataset, what values are in the tranTypeID?
Is there actually a value called 'INT'?
May 6, 2013 at 10:49 am
I think there's an error in your expression. Are you missing the .Value? (Bolded below)
=iif(Fields!TrantypeID.Value = "INT",SUM(Fields!DrAmt.Value),0)
May 6, 2013 at 10:31 am
For future reference, Please read this:
http://www.sqlservercentral.com/articles/Best+Practices/61537/[/url]
For the event types you need to put the booking ID in the output.
And you MUST use an order by to get the xml to...
May 6, 2013 at 10:29 am
Something to try. I've never found median to be a very meaningful number. Anyhoo. :hehe:
http://techfilth.blogspot.com/2008/07/calculate-median-on-group-in-ssrs.html
May 6, 2013 at 9:56 am
Microsoft info regarding browsers.
http://msdn.microsoft.com/en-us/library/ms156511(v=sql.105).aspx
May 3, 2013 at 3:24 pm
darkhelmutis (5/2/2013)
The Transaction ID is one of...
May 2, 2013 at 1:48 pm
My .02c
From a user perspective, who wants to scroll thru 700,000 id's?
especially because the ssrs drop down does not allow type ahead, and the list is small
From a technical perspective,...
May 2, 2013 at 12:48 pm
For a simple trend, wouldn't you just figure out Growth by month for the last n... months. Then make a monthly average.
So if it grows 1 gb/Month. Then take Current...
April 23, 2013 at 10:52 am
When you are comparing DATETIME Dates = the date AND time must be equal.
If your data Type is DATE then TIME is eliminated, however GETDATE() will return DATE AND TIME....
April 23, 2013 at 10:43 am
Sorry I'm confused.
My thought would be your main report would not list Courses, It would just list Teachers that teach the subject you searched for.
And the Subreport should simply return...
April 22, 2013 at 3:57 pm
Yeah,
Your subreport would just return all courses Taught by TeacherID.
And your main report would return all teachers based off your search.
April 22, 2013 at 11:58 am
What does your dataset look like?
If it returns each Multiple times with different dates. Then Use a table.
Create a group on Date, and put the person in the detail rows.
April 22, 2013 at 10:27 am
You can't change an outer dataset from a subreport.
You can change your main reports dataset to return teachers that teach the Subject your looking for.
Then the subreport that lists courses...
April 22, 2013 at 10:21 am
Viewing 15 posts - 16 through 30 (of 1,345 total)