What's the best way to flag different types of data in a column?
I have a data set where I have a mixture of dollar values, percentages, and N/As in Column B and I want to flag them by their type as the calculation for each is different. Originally I thought going with a "Column B > 1" will help flag the dollar value ones, but that doesn't include all of it. Thank you!
CodePudding user response:
check the below formula. =IF(ISTEXT(N3),"Red",IF(CELL("format",N3)="C2-","Green","Yellow"))