Report heading not displaying

  • Hi

    I have a report that uses cascading parameters and I am trying to have a report heading that will display accoridng to the selection a user has made.

    I tried the following :

    =IIF(Parameters!Consolidate.Value = "CONSOLIDATE", "Retail HeadCount : "& Parameters!EndPeriod.Value.ToString ,

    strConv(Parameters!Consolidate.Value,3) & " HeadCount : "& Parameters!EndPeriod.Value.ToString)

  • Instead of .ToString try CStr(<parameter>)

  • Hi Vishal

    Thsnks for the feedback, I tried it like you suggested but I'm still getting an error.

    =IIF(Parameters!Consolidate.Value = "CONSOLIDATE", "Retail HeadCount : "& Cstr(Parameters!EndPeriod.Value) ,

    strConv(Parameters!Consolidate.Value,3) & " HeadCount : "& Cstr(Parameters!EndPeriod.Value))

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply