Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
620
Parameter Label
posted

I have a parameter in my report with the following values

Value = 0, Label = Daily
Value = 1, Label = Weekly
Value = 2, Label = Monthly

I want to add a label to the report header for the Search Criteria and if I do the following

="Report Type " + Parameters.C_Options

I get the value of the parameter not the label, I want it to say "Report Type Daily" not "Report Type 0"

Thanks

David.

  • 550
    Suggested Answer
    posted

    Hello David,

    Regrettably currently isn't possible to access the Label value of the parameter. You can access just the value of the parameter.

    As a workaround you can use the following expression:

     

    = "Report Type " + if (C_Options = 0, "Daily", if(C_Options = 1, "Weekly", "Monthly"))

     

    Hope it helps!

    Please let me know if you require any further clarification on the matter.

    Normal 0 false false false EN-US X-NONE X-NONE