Comments
2 comments
-
A member of the development team has has a look at the report that you have mentioned. He has changed it to 'something sensible'. Apparently this is not locale specific, but should better. I haven't tested it myself yet though.
The new version is now available for download.
Please let me know how it goes. -
Sadly, that didn't change anything.
The Alerts query in the RDL has two places where the CONVERT() function states 105 as the format code - that's ITALIAN.CONVERT (varchar, DateTimeRaised, 105) AS AlertDay , CASE WHEN @TimeInterval = 'Hourly' THEN CONVERT (varchar, DateTimeRaised, 105) + ':' + LTRIM(STR(DATEPART(hh, DateTimeRaised))) + 'h' ELSE NULL END AS AlertDayHour
Can I suggest that the RDL be modified so that when "Daily" just the date portion is returned, else the date plus hour in a CAST( x AS datetime) field (from your util.tick-conversion). IMO, the "h"-style can be disposed of in favor of a standard-appearance of date+hh:00 to obviate format and content issues. Then code an expression in the chart's x-axis Format code, which it can have, despite there not being an expression icon next to it:=IIF(Parameters!TimeInterval.Value="Daily","d","g")
You won't then need the expression for the x-axis label value.
This boils down to: allow formatting to be performed upon presentation, i.e., in NOT in the underlying query...
How does this sound to you...
Add comment
Please sign in to leave a comment.
Please fix the RDLs and re-deploy the SSRS pack. Thanks in advance.