Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using OR in IIF statement...RDLC

Tags:

rdlc

report

iif

Please can you someone help me? My question is :

How to use properly OR in IIF statement in RDLC report?

Both Fields!A.Value and Fields!B.Value contains string or empty string.

This code works fine:

=Iif(Len(CStr(First(Fields!A.Value, "dsResult_dtRows")))=0, True, False)

This code doesnt work:

=Iif(Len(CStr(First(Fields!A.Value, "dsResult_dtRows")))=0 Or
 Len(CStr(First(Fields!B.Value, "dsResult_dtRows")))=0, True, False)

thanks a lot for ideas and answers -marek-

like image 727
marek Avatar asked Jan 20 '23 16:01

marek


1 Answers

you should be able to concatenate the field values and test for the empty string instead of testing each value individually.

try

IIF(Fields!A.Value & Fields!B.Value = '',true,false)

for either empty returning true, try:

IIF(Fields!A.Value ='' or Fields!B.Value = '',true,false)
like image 59
Beth Avatar answered Jan 23 '23 04:01

Beth