Hi,
i am using below exprssion for loation of Supplier.
=SWITCH(
IsNothing(Fields!MSUPCITY.Value) AND IsNothing(Fields!MSUPSTATE.Value) AND IsNothing(Fields!MSUPCOUNTRY.Value),"",
IsNothing(Fields!MSUPCITY.Value),Fields!MSUPCOUNTRY.Value,
IsNothing(Fields!MSUPCITY.Value),Fields!MSUPSTATE.Value,
IsNothing(Fields!MSUPCOUNTRY.Value),Fields!MSUPSTATE.Value,
True,Fields!MSUPCITY.Value+", "+Fields!MSUPSTATE.Value + ", " + Fields!MSUPCOUNTRY.Value
)
but when ever City is not there in Database output is coming with one extra (,) like---- ,state, Country
how to Avoid this Extra comma somtimes it's coming in between when sate is not there.
Any Suggestion plz let me know.