Hi
In my reports i like to print the values of the paramters used to generate the report at the top of my reports.
I've just written a report usuing MDX and one of the Parameters is a multivalue list based on a hierachy. The problem i have is when i join the parameter label values together it's bringing through the indenting preceeding whitespace. I've been struggling for a while now to try and trim this off
Anyone have any suggestions??
=JOIN(Parameters.Sites.Label,", ")
results in
Head Office, Branch 1, Subbranch 1 etc
If i put =JOIN(LTrim(Parameters.Sites.Label),", ") i get the error
Overload resolution failed because no accessible 'Join' can be called with these arguments
cheers
Matt