hi, I am unable to get the correct results for the below code. The nested IF statement does give the correct results. Can someone help me identify the incorrect part.
IF [field1] = "PRICE" && IsNull([field2])
THEN
IF [field1] = "Qty" && I!sNull([field2])
THEN "REQUIRED FIELD"
ELSE "NOT REQUIRED"
ENDIF
ELSE "NOT FOUND"
ENDIF
Iam trying to validate data available in field1 and field2 to update a third field using this logic.