I want to concatenate 2 twooptionset values from MS CRM on true condition seperated by commas on a textbox and leave a blank if 2 twooptionset values are false.
I have writen an Expression in SSRS:
=iif(Len(Cstr(iif(Fields!aaValue.Value="True","aa,","") & iif(Fields!bbValue.Value="True","bb,","")))=0,"",
Left((iif(Fields!aaValue.Value="True","aa,","") & iif(Fields!bbValue.Value="True","bb,","")),
len(iif(Fields!aaValue.Value="True","aa,","") & iif(Fields!bbValue.Value="True","bb,","")) - 1
)
If either of 2 twooptionset values are true then it shows a text on textbox. If Both twooptionset values are false then it shows #error on the textbox.
So how to check null string in SSRS?