Am trying to do an iif.... stmt in Visual studio in an Expression behind a control. I want to test if a field exists or is not there - or: null. My statement is
=iif(IsNothing(Fields!Sent_Date.Value), "No Match",("Policy Sent Date: " & Fields!Sent_Date.value)).
However, I cannot get the 'No Match' to display. When there is no match, the control is just blank. Any help would be appreciated. Thanks.
=iif(IsNothing(Fields!Sent_Date.Value), "No Match",("Policy Sent Date: " & Fields!Sent_Date.value)).
However, I cannot get the 'No Match' to display. When there is no match, the control is just blank. Any help would be appreciated. Thanks.