We noticed that the data which is in number was sometimes
not coming up as number inspite of applying the number format for that textbox.
To resolve this issue we used CDBL(FieldName).
Client came back to us that the excel output cells were
getting merged and this was because of multiple textboxes aligned with the
Tablix. To overcome this issue, we changed the size of the Tablix from inch and
cm to pt. We also maintained the distance between each text box as 0 point.
NaN error was encountered in SSRS MDX reports. Usage of
Single.IsNaN(Fieldname) did not fix the issue. To remove the NaN error we used
the iif statement for the denominator filed to replace 0 with 1
SSRS reports would have 2 tablix and the sorting would be at
report level. I,e if Tablix 1 generated 3,4 as data and yablix 2 generated 1,2
as data SSRS report would show 1,2,3,4 as output. On analyzing this
functionality was achieved by using the Maser child relationship I,e Subreport
concept in SSRS. The main report will have a list of Sl No that has to be in
order and the subreport will generate result for every single Sl No. However
this reduced the speed of the generating the report. Client was okay with the
speed and hence nothing much could be done.
This project required
us to use hyperlinks for Excel and PDF icons to open reports in Excel and PDF
respectively. Oracle reports worked as expected but MDX report did not work
properly. This is because the data which was passed in the hyperlink was
included in brackets[]. We had to replace the [ with the %5B symbol to overcome
this issue
Hi Folks,
Follow the below code to get a default value for Switch statement used in SSRS
=Switch(Fields!PO_TYPE.Value = "Warehouse",1,Fields!PO_TYPE.Value = "Local",1,Fields!PO_TYPE.Value = "Z",3,1=1,4)