Viewing 15 posts - 1 through 15 (of 22 total)
So it doesn't look like the permissions are this granular. I basically told the end-users to be careful when managing reports. At least I can lock down permissions...
April 17, 2013 at 8:06 am
Would this be a matter of adding TOP 5 to the SQL statement?
Something like
SELECT TOP 5 fieldname1, fieldname2 FROM tablename
April 2, 2013 at 8:54 am
What happens if you wrap the expression in the CDate function? Like:
=CDate(Format(DateAdd("d", -1, now()),"dd/MM/yyyy"))
March 28, 2013 at 8:11 am
Here is a list of the popular date calculations:
First Date of last month: =Format(DateAdd("m", -1, DateSerial(Year(Now()), Month(Now()), 1)),"dd/MM/yyyy")
Last date of last month: =Format(DateAdd("d", -1, DateSerial(Year(Now()), Month(Now()), 1)),"dd/MM/yyyy")
First date of current...
March 28, 2013 at 6:06 am
Have you tried to recreate the line chart in 2008 to see if you get the same "cropped" result? This will tell you if it's a data problem or...
March 27, 2013 at 11:01 am
This is a tough one. I'm sure someone will have a better answer as I am just guessing. It doesn't look like the chart is being cropped per...
March 26, 2013 at 2:12 pm
Hey J -
Just curious... how did you solve this?
Mike
March 26, 2013 at 6:53 am
Is there any chance you could take a screenshot of the cropped line chart? Without seeing it, it's going to be difficult to recommend options.
Thanks!
Mike
March 26, 2013 at 6:04 am
Glad you figured it out. Thanks for letting us know!
Mike
March 21, 2013 at 5:52 am
Could you use the ISNULL function like:
...and (YearVal In (ISNULL(@CalYear, 0)) or FYearShortVal In (ISNULL(@SalesYear,0)))
March 20, 2013 at 8:36 am
Did you figure this out? I am curious to know what happened.
Mike
March 20, 2013 at 6:32 am
I've had this problem for years with web application development. Adding a single apostrophe (') is the best option. Unfortunately, Excel will always attempt to format the data...
March 20, 2013 at 6:25 am
Sounds like there is no love for SSRS 2008. Bummer!
March 20, 2013 at 6:12 am
Do you have grouping on the report itself? If you have Row Grouping on the field, this will show the SUM (or whatever aggregate you want) at the bottom...
March 20, 2013 at 6:11 am
Viewing 15 posts - 1 through 15 (of 22 total)