Hi
Can someone help creating a new columns if my data say
[Field4], [Field5],[[Field6] are [Nulls], then I need to create a new column with a remark/note to mention that data is not available.
Solved! Go to Solution.
@poornimak If all three columns should be null to display the message then you can write the below formula in the formula tool
IIF (IsNull([Field4]) AND IsNull( [Field5]) AND ISNull([Field6]),'Data is not available',Null())
If any one of the fields is Null then use the OR instead of AND in the above formula
Hi @poornimak
Please use the formula tool,
In the Configuration Pane, Select Add Column and Type your name of the new desired column.
Then use the below formula,
IF IsEmpty([Field4]) AND IsEmpty([Field5]) AND ISEmpty([Field6])
THEN "Data is not available"
ELSE Null()
ENDIF
Many thanks
Shanker V