1
I am fulfilling a condition in my report in order to insert "-"
when the Due date is null, but error occurs when the date comes other than null. Below is the image that shows the error when I fill the due date:
The following expression has been used in the report:
=IIf(Fields!DataVencimentoPago.Value <> "",Format(Fields!DataVencimentoPago.Value,"dd/MM/yyyy"),"-")
I tried in another way too, but without success:
=IIf(Fields!DataVencimentoPago.Value <> "", Fields!DataVencimentoPago.Value,"-")