IF quick formula , please help

bmarroush

Board Regular
Joined
Feb 2, 2016
Messages
102
=IF(H7*I7>2,"Moderate"),IF(H7*I7>=5,"High", "Medium")

It is not calculating

Suggest correction :)

Thansks
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
What do you mean "It is not calculating".

I imagine it IS calculating :)

If (H7*I7) = 6, for example, you might want it to show "High" but I think it will actually show "Moderate" because it meets the criteria for the first IF statement, so the second IF statement will not be evaluated.

What do you actually want this to do ?
 
Upvote 0
I think you mean :

=IF(H7*I7>2,"Moderate",IF(H7*I7>=5,"High","Medium"))
 
Upvote 0
BarryL - in what circumstances would the section
IF(H7*I7>=5
be evaluated ?

If H7*I7>=5, it will be dealt with by the first IF statement.
 
Upvote 0

Forum statistics

Threads
1,214,535
Messages
6,120,090
Members
448,944
Latest member
sharmarick

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