Viewing 15 posts - 16 through 30 (of 36 total)
Alright all, after three panicky posts in the span of an hour, the issue has been resolved. Moved to the dataset query in SSRS and added a 'OR Year(datecolumn) IS...
August 16, 2012 at 3:38 pm
Actually, I believe I found the issue. The NULL containing records are also leaving the date column as NULL, and the report is using a year(datecolumn) and month(datecolumn) parameters to...
August 16, 2012 at 2:48 pm
Thank you all for the responses. Unfortunately, I am still having this problem, even after implementing a join query that produces NULL values. The matrix table simply does not show...
August 16, 2012 at 2:38 pm
Thank you guys. It's looking like I may have to go the insert route. I tried the LEFT JOIN and for some reason, the output did not produce records with...
August 6, 2012 at 2:52 pm
After further review, I believe I understand your recommendation now. Are you suggesting that I input NULL or 0 values in the table, for all the location groups that currently...
August 6, 2012 at 1:00 pm
Gazareth (8/6/2012)
You'll need to do it in SQL unfortunately, returning NULL or 0 or 'None', whatever's appropriate.Fixed data property is for keeping the data onscreen while scrolling.
Gazareth, thanks for the...
August 6, 2012 at 8:34 am
I am having a very similar issue, except in SSRS 2008. I have a matrix table, with "Accounts" as rows and "Locations" as columns. The data is a money sum...
August 6, 2012 at 7:36 am
Thank you all for the incredibly informative replies. Greatly appreciate the wealth of insight offered and have began the long process of incorporating all things mentioned into the document. Unfortunately,...
July 18, 2012 at 12:46 pm
happycat59 (7/15/2012)
You will need something like
=iif(Parameters!DateSortOrder=DateInterval.Year, Datepart(DateInterval.Year, Fields!somedate), iif (Parameters!DateSortOrder=DateInterval.Month, Datepart(DateInterval.Month, Fields!somedate) etc
Or (a shorter form of the above
=Datepart...
July 18, 2012 at 7:38 am
happycat59 (7/10/2012)
e.g. IIF (Parameters!Criteria.Value="Daily", Fields!DailyField.Value, (IIF (Parameters!Criteria.Value="Weekly", Fields!WeeklyField.Value, Fields!MonthlyField.Value))
As an alternative, you could include similar logic...
July 12, 2012 at 8:21 am
Thanks for sharing. I tried the solution but, unfortunately, I still receive an error. The error I receive is different than the one mentioned in your post. I get:
The tablix...
July 4, 2012 at 7:54 am
bitbucket-25253 (7/2/2012)
Use the DATEDIFF function - check it out on Books On Line (BOL) or read this:http://msdn.microsoft.com/en-us/library/ms186724.aspx#GetDateandTimeDifference
Thank you BitBucket. Sorry for sounding novice, but I assume you mean use a...
July 2, 2012 at 8:15 pm
gissah (7/2/2012)
July 2, 2012 at 4:21 pm
I also experience this issue, and have yet to find a way to load an .RDL as a custom report under Database Snapshots in SSMS. Receiving the error "The definition...
June 30, 2012 at 12:21 pm
Viewing 15 posts - 16 through 30 (of 36 total)