Viewing 15 posts - 31 through 45 (of 88 total)
SSRS doesn't play nice with numbers when filtering.
Try these:
convert your numeric expression to string
Expression______________________________________________Operator__Value
=CStr(DateDiff(DateInterval.Day, Fields!DateAdded.Value, Today)) <= 7
OR
Turn...
August 18, 2008 at 9:46 am
Here's info about SSRS' numbering formats along with links to MSDN's VB formatting info.
Using 123456789 as an example:
Currency - C or c = $123,456,789.00; Using precision specifier, C0 =...
August 12, 2008 at 9:03 am
Sounds like you've ended up with the FIRST aggregate attached to your field.
Change FIRST(Fields!student.Value) to just Fields!student.Value.
That should do it.
HTH
August 7, 2008 at 10:02 am
Sounds to me like you're not configured for email delivery. Check with your DBAs (or check yourself) to make sure your SSRS configuration includes the email option and that...
August 4, 2008 at 8:58 am
My guess is those single word queries are actually stored proc names. In order to track back to the actual tables, you'll need to look at these procs and...
July 29, 2008 at 7:53 am
brunm (7/24/2008)
My report conatins a list (i must use a...
July 29, 2008 at 7:22 am
=sum(iif(condition field = "salary",value field,0))
July 25, 2008 at 1:56 pm
Just so you know why the IIF doesn't work: IIF is a function. SSRS reads the entire statement kind of from the inside out. It sees the...
July 21, 2008 at 1:52 pm
Excellent!! The fewer subreports the better I always say.;)
July 14, 2008 at 1:57 pm
is250sp (7/14/2008)
July 14, 2008 at 12:49 pm
Just throwing some thoughts out for you to look at.
What links the reports? Particularly the 2nd sub to the first and the parent report.
When you're running the problematic 2nd...
July 14, 2008 at 11:47 am
What's the exception message?
When I inserted that expression into one of my reports (substituting my report's fields of course), it ran without incident.
Leads me to believe it's a...
July 3, 2008 at 7:01 am
Chances are the dimensions of your report are exceeding the size of your page.
Make sure the width and or height of all your report parts plus margins is less than...
July 2, 2008 at 1:52 pm
Couple things:
Is your usetime field a datetime field? If so, the values are going to include time along with date so using = without modifying both GETDATE() and usetime...
June 30, 2008 at 2:33 pm
I answered this last Friday (Post #525356) when you posted it under "Date Parameter (Post #525310)."
Here it is again:
The following will give you yesterday's date:
In T-SQL
DATEADD(dd,-1,GETDATE())
In VB/SSRS
=DATEADD("d",-1,NOW())
June 30, 2008 at 9:55 am
Viewing 15 posts - 31 through 45 (of 88 total)