Nested IF formula statements

janema

Board Regular
Joined
Nov 28, 2022
Messages
117
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2011
  5. 2010
Platform
  1. Windows
  2. Mobile
I am using the following formula to return the value according to the below table:

=IF(G4<1.5,"needs improvement",IF(G4<2,"low meets",IF(G4<2.5,"meets",IF(G4<2.75,"exceeds",IF(G4>2.74,"high exceeds")))))

However, if the cell is ZERO, blank, or an error, I would like it to return a "N/A" value.

Can someone please help me to knows where to insert that and what ot use? I get an error when I do this way:

=IFERROR(IF(G4="","N/A",(G4<1.5,"needs improvement",IF(G4<2,"low meets",IF(G4<2.5,"meets",IF(G4<2.75,"exceeds",IF(G4>2.74,"high exceeds")))))
 

Attachments

  • 1683150231363.png
    1683150231363.png
    15.9 KB · Views: 6

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
I figured it out actually! Yay! Thanks anyway.
 
Upvote 0
the function to return #N/A is NA().
But, your last argument should not be
G4>2.74,"high exceeds"
it should be:
G4>=2.75,"high exceeds"
 
Upvote 1
Solution
the function to return #N/A is NA().
But, your last argument should not be
G4>2.74,"high exceeds"
it should be:
G4>=2.75,"high exceeds"
You are right! Thanks so much! I missed that.
 
Upvote 0

Forum statistics

Threads
1,215,307
Messages
6,124,163
Members
449,146
Latest member
el_gazar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top