Expression

  • Can someone help me with an expression for this. I need to show the parameter label as this.

    Here is the SQL way , which works , Need to implement it thru an Expression but having no luck

    Select distinct Case when Program like '% , %' then REPLACE(Program ',','-') Else Program End as Program

    from dbo.Dept

  • I can't tell if that's a space and a comma, or a space, comma and space -- so tweak this to whatever you need:

    =Replace(Fields!YourStuff.Value, ", ", "-")

    HTH,

    Rob

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

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