Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a table with a field that has similar content in multiple rows. I want to combine the multiple possibilities into one output.
This is the table:
Status |
Discontinued |
N/A |
Certified |
Approved |
Discontinued |
Not Certified |
N/A - non applicable |
Thanks in advance for your assistance.
The name of the field is 'Status'. I would like to replace the varied 'N/A' and 'Not Applicable' and 'NA Non Site' indicators with something like 'N/A' so they all match.
Thanks Dilipranjith,
It's kind of working. I have another possible data instance that wasn't in the sample I posted.
This is what I tried:
if(WildMatch(Certification_Status,'N/A*'),'N/A',Status)as Status ,
if(Certification_Status = 'Not Applicable','N/A',Status)as Status,
The first statement is effective. The second part is not. What am i doing wrong here?
Thanks! This solution worked.