View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default If function with 3 different outcomes

You could do this:

=IF(E17<C17,"Below range",IF(E17D17,"Above range","In range"))

Assumes that C17 is less than D17.

Hope this helps.

Pete

On Jul 31, 1:44*am, Max wrote:
How to use the IF function to get 3 different outcomes. If E17<C17 then
"Below Range", If E17D17 "Above Range" IF E17 is between between C17 AND D17
then In Range.. How do i do this?