I am working with a data set of over 1500 accounts. I need to simplify the Status column such that if a Customer has a "High" or "Low" status it will be returned in the Status_Simplified column for all matching Customers instead of "NA", "Soft", etc. Absence of a "High" or "Low" would simply be "NA". For example, for Customer ABC I want Status Simplified to be "High" for all 3 Customer ABC accounts. For Customer XYZ, Status_Simplified should be "Low".
Figured I would start with =IF(OR(B2="High",B2="Low"),B2,.......but not sure what to put for the FALSE statement. I can use a Helper column if that is needed.
Note, data will always be in order by Customers. But Status could be in any order within a customer.
Office 265
Thanks in advance
Figured I would start with =IF(OR(B2="High",B2="Low"),B2,.......but not sure what to put for the FALSE statement. I can use a Helper column if that is needed.
Note, data will always be in order by Customers. But Status could be in any order within a customer.
Office 265
Thanks in advance
A | B | C |
---|---|---|
Customers | Status | Status_Simplified |
Customer ABC | High | High |
Customer ABC | NA | High |
Customer ABC | Soft | High |
Customer XYZ | NA | Low |
Customer XYZ | Low | Low |
hundreds more unique customers........ |