Is it possible to use one replace function to replace multiple strings in one field?
In my report I need to use the built-in replace function to replace for example "a" with "b" and "c" with "d". When I just use 2 functions like this: Replace(Fields!field1.Value, "a", "b") & Replace(Fields!field1.Value, "c", "d") I get the text from the field twice in my report. Is it possible to do this? Maybe nest to replace functions? I'm new to reporting services so I could be missing a very obvious solution to this. Note: I would write my own code to do this but the report is for Microsofts Dynamics CRM 2011 which doesn't allow custom code in a report. You have to nest the function's For