SOLVED
if there are nulls in my columns, I need to add a new column 'Note' which says no data.
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
poornimak
7 - Meteor
‎07-27-2023
11:35 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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.
Labels:
- Labels:
- Preparation
2 REPLIES 2
binuacs
21 - Polaris
‎07-28-2023
12:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@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
ShankerV
17 - Castor
‎07-28-2023
12:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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
