View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bernard Liengme[_3_] Bernard Liengme[_3_] is offline
external usenet poster
 
Posts: 1,104
Default Display multiple results based on one cell

Suppose the number is in A1
=IF(A1510,"Level 4",IF(A1500,"Level 3", IF(A1490, "Level 2", IF(A1=475,
"Level 1", "too small"))))
OR
=LOOKUP(A1,{475,491,501,511},{"Level 1","Level 2","Level 3","Level 4"})
best wishes
--
Bernard V Liengme

http://people.stfx.ca/bliengme
remove caps from email


"Cul" wrote in message
...
I need help coming up with a formula that will display Level 1, Level 2,
Level 3, and Level 4 based on what the cell is. If the number is 475 - 490
display Level 1. If the number is 491-500 display level 2. if the number
is
501-510 - Level 3. and 511-infinity display Level 4.

The result would look like this
489 Level 1
502 Level 3
477 Level 1