IF Function #VALUE Error

Reddazrael

New Member
Joined
Sep 11, 2017
Messages
2
Okay, I am stumped (hence why I'm posting here). No matter what I do, I cannot get this formula to work. Here is the current bane of my existence:

=IF(J7 < 25%, "Text 1"), IF(J7>25%, "Text 2"), IF(J7>50%, "Text 3"), IF(J7>75%, "Text 4"), IF(J7>= 99%,"Text 5")

I have no idea what I'm doing wrong. I've even put spaces around the < sign, as I saw being suggested in another posted, but no dice. If someone could help me, that would be greatly appreciated.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Welcome to the Board!

A few things:
- When nesting IF statements, do NOT close off the brackets with a right-bracket until the end, or else you are ending the whole formula.
- When working through a series of different levels, start either at the top or bottom and work your way up or down.
It is important to note that once a TRUE condition is met, it stops there. So you do not want to test if J7>25% before J7>50%, as any number greater than 50% will also be greater than 25%, so it will NEVER get to your 50% check.

Try this:
Code:
=IF(J7>=99%,"Text 5",IF(J7>75%,"Text 4",IF(J7>50%,"Text 3",IF(J7>25%,"Text 2","Text 1"))))
 
Upvote 0
Welcome to the Board!

A few things:
- When nesting IF statements, do NOT close off the brackets with a right-bracket until the end, or else you are ending the whole formula.
- When working through a series of different levels, start either at the top or bottom and work your way up or down.
It is important to note that once a TRUE condition is met, it stops there. So you do not want to test if J7>25% before J7>50%, as any number greater than 50% will also be greater than 25%, so it will NEVER get to your 50% check.

Try this:
Code:
=IF(J7>=99%,"Text 5",IF(J7>75%,"Text 4",IF(J7>50%,"Text 3",IF(J7>25%,"Text 2","Text 1"))))

Thank you so much. As you can probably tell, I'm only just starting to learn Excel, so your advice is really appreciated! The formula is now doing what I want it to do, so you've made me a very happy individual. Thank you again!
 
Upvote 0
You are welcome.
Glad to help, and hope the logic/methodology makes sense!
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,536
Members
449,037
Latest member
tmmotairi

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