Hi, I have 10 columns, 4 of which are mandatory.
Is there any way to validate for every row, these 4 columns do not come empty and indicate in a new column which one comes empty?
I have tried select (to check the 4 fields) and multi-field formula without success, this is the expression:
IF IsEmpty([_CurrentField_])
THEN [COMMENTS]==[COMMENTS]+[_CurrentFieldName_]
ELSE [_CurrentField_] ENDIF
I also tried whit iff:
IIF(IsEmpty([_CurrentField_]),[COMMENTS]==[COMMENTS]+[_CurrentFieldName_],[_CurrentField_])
Thanks for some guidance on this.