Help with if formula within if formula

dunmore83

Well-known Member
Joined
Aug 24, 2011
Messages
540
HI,

Can someone please help me???

In cell L3 I need to execute this formula... =IF((L8-I14)>0,"YES","N/A") but I only want this formula to run if the cell I10 contains the text YES. If the cell I10 contains NO I want the cell I10 to display N/A.

PLEASE HELP ME!!!!!

I have spent hours searching google & been unable to solve this.

Thanks in advance
 
Last edited:
Hi. I made a personal budget spreadsheet that has this in the H11 cell:

=CEILING(0.1*(H4+H6+H7),"5")

It adds H4, H6 and H7, multiplies it by 1/10, then rounds the answer up to the nearest 5. That's all good except now I'm having times when H4 is greater than zero, but less than 5, and H6 and H7 are zero. Per my formula, the result is 5. I need it to be zero. I tried IF(H4<=5),(=CEILING(0.1*(H4+H6+H7),"5","0")) but it's not working. I've tried the insert function button. The "0" is right, but the ceiling part comes up as invalid and I can't figure out what to change to make it work. Am I not allowed to have two "=" signs in there? Am I missing a comma or parenthesis or space? Eeeeek help!
 
Upvote 0

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hi. I made a personal budget spreadsheet that has this in the H11 cell:

=CEILING(0.1*(H4+H6+H7),"5")

It adds H4, H6 and H7, multiplies it by 1/10, then rounds the answer up to the nearest 5. That's all good except now I'm having times when H4 is greater than zero, but less than 5, and H6 and H7 are zero. Per my formula, the result is 5. I need it to be zero. I tried IF(H4<=5),(=CEILING(0.1*(H4+H6+H7),"5","0")) but it's not working. I've tried the insert function button. The "0" is right, but the ceiling part comes up as invalid and I can't figure out what to change to make it work. Am I not allowed to have two "=" signs in there? Am I missing a comma or parenthesis or space? Eeeeek help!
Maybe this...

=IF(H4+H6+H7<=5,0,CEILING(0.1*(H4+H6+H7),5))
 
Upvote 0
Wow. It works, it absolutely works! You are the most awesome person ever!
Thank you thank you thank you!
 
Upvote 0

Forum statistics

Threads
1,215,644
Messages
6,125,992
Members
449,278
Latest member
MOMOBI

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