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!