(if) statement when the rows in a column are empty
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi There,
I have written a (if) statement to bring in a specific value when the rows are blank. However, I am not able to get the end result. Please see the formula & the highlighted section below.
Let me know how to go about this.
if [Review/action needed by]="Breanna" then "Client Care Investigators"
elseif [Review/action needed by]="Farah" then "Client Care Investigators"
elseif [Review/action needed by]="Muhammad" then "Client Care Investigators"
elseif [Review/action needed by]="Shaliny" then "Client Care Investigators"
elseif [Review/action needed by]="Breana" then "Client Care Investigators"
elseif [Review/action needed by]="Tammy" then "Client Care Investigators"
elseif [Review/action needed by]="N/A" then "Client Care Investigators"
elseif [Review/action needed by]="([IsNull])" then "Client Care Investigators"
elseif [Review/action needed by]="Kerry Ann" then "Compliance Officers Reviewing"
elseif [Review/action needed by]="Marilia" then "Compliance Officers Reviewing"
elseif [Review/action needed by]="Firdaus" then "Compliance Officers Reviewing"
elseif [Review/action needed by]="Trina" then "Compliance Officers Reviewing"
elseif [Review/action needed by]="Patrick" then "Compliance Officers Reviewing"
elseif [Review/action needed by]="Anu" then "Compliance Officers Reviewing"
else "New"
ENDIF
Solved! Go to Solution.
- Labels:
- Data Challenge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey @SubbuSharma,
I would write the section you have highlighted as:
elseif [Review/action needed by]=Null() then "Client Care Investigators"
Or if you also want to also include blank cells:
elseif isEmpty([Review/action needed by]) then "Client Care Investigators"
Both these functions are found in the test section of the functions list:
More information on the found here Functions: Quick Reference | Alteryx Help
Any questions or issues please ask
Ira Watt
Technical Consultant
Watt@Bulien.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you @IraWatt , that was really helpful.
have a good one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Great to hear @SubbuSharma, Happy Friday ! 😄
