I have the following expression:
=iif(isnothing(reportitems.textbox1.value),1,2) which works fine, however when I switch the false statement to,... reportitems.textbox2.value/reportitems.textbox1.value to read:
=iif(isnothing(reportitems.textbox1.value),1,reportitems.textbox2.value/reportitems.textbox1.value) it seems to ignore the isnothing part and I get #error.
Any ideas why this is?
Thanks
Carl.