Basically, I want to check if the value of field F1 is not empty. If the row not empty then I want to calculate F2 * F3
The following expression always print
#Error
=IIf(Fields!f1 ="" ,"" ,Fields!f2.Value* Fields!If3.Value)
Please help
Basically, I want to check if the value of field F1 is not empty. If the row not empty then I want to calculate F2 * F3
The following expression always print
#Error
=IIf(Fields!f1 ="" ,"" ,Fields!f2.Value* Fields!If3.Value)
Please help
=IIF(ISNOTHING(Fields!f2.Value)," ", (IIF(ISNOTHING(Fields!If3.Value),"",
Fields!f2.Value* Fields!If3.Value))