Home > Enterprise >  Flagging the type of data ($, %, N/A) in Excel
Flagging the type of data ($, %, N/A) in Excel

Time:10-14

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!

Sample Data Set

CodePudding user response:

check the below formula. =IF(ISTEXT(N3),"Red",IF(CELL("format",N3)="C2-","Green","Yellow"))

Result Pic

  • Related