SOLVED
If a value exist on rows, then it should pass
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
h12
8 - Asteroid
‎07-30-2021
03:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi all
I have this data set
A | B | B1 | C | D | D4 | I WOULD LIKE TO CREATE THIS COLUMN: Pass/Fail |
No match | 3 | xx | 4 | No Match | yy | Fail |
2 | Data Issues | xx | Data Issues | Data Issues | yy | Fail |
Data Issues | Data Issues | xx | Data Issues | Data Issues | yy | Fail |
2 | 4 | xx | 5 | 6 | yy | Pass |
I would like to create a pass or fail column which says... if the column has data issues or no match then flag as a fail. There will be multiple columns between the A B C D columns flagged above but I only want to check these.
Many thanks!
Solved! Go to Solution.
Labels:
- Labels:
- Workflow
4 REPLIES 4
22 - Nova
‎07-30-2021
04:00 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @h12
You can use formula like below.
IF [A] in ("No match","Data Issues")
or [B] in ("No match","Data Issues")
or [C] in ("No match","Data Issues")
or [D] in ("No match","Data Issues")
THEN "Fail" ELSE "Pass" ENDIF
Workflow:
Hope this helps : )
‎07-30-2021
04:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Oh yeah, sorry I m not sure why I was thinking I need the multi row formula tool! I have a large data set of over a million rows, I assume the above would work for that as well?
22 - Nova
‎07-30-2021
04:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
‎07-30-2021
06:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks!
