Formula help

  • Thread starter Thread starter danlinksman
  • Start date Start date
D

danlinksman

I need help with the following problem.
Example
Cell H13 is either left blank or has a number 1,2,3,4,5,6,7,8,9 or 10
I need the formula to return the following results
If H13 is blank return a blank cell
If H13 is 1,2,3,4,5,6,7,8, or 9 return "SEE GE TOTALS"
If H13 is 10 return "SEE SEDGWICK TOTALS"

Thanks in advance of your help!
 
=IF(H13="","",IF(OR(H13={1,2,3,4,5,6,7,8,9}),"SEE GE TOTALS","SE SEDGWICK
TOTALS"))
 
Back
Top