IF Formula Help

CherryxDarling

New Member
Joined
Mar 30, 2011
Messages
39
I absolutely suck at formulas and really need some help here. :confused:

Ok so I have this formula: =IF(E7="","",IF(E7>=125,ROUNDUP((E7/2)/125,0),1))

which I use to calculate how many toilets are needed per 125 people.

Now I need to just take 67% of the answer this formula gives me. I know it seems like a simple question, but I tried like a thousand different ways to do it and it was giving me funky answers.

I still want the formula to round up and all the other good stuff that's in the formula already, but I just need it to be multiplied by 67% after I get the answer.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Rich (BB code):
=(IF(E7="","",IF(E7>=125,ROUNDUP((E7/2)/125,0),1)))*0.67

lenze

photostream


http://www.flickr.com/photos/63155168@N08/5736783545/in/photostream

Here is what I'm trying to do...
I want the new formula to be in H7 under "Urnial Substitution"
 
Upvote 0
Code:
=ROUNDUP(IF(E7,IF(E7>=125,ROUNDUP((E7/2)/125,0),1))*0.67,0)
or
Code:
=ROUNDUP(IF(E7,IF(E7>=125,(E7/2)/125),1)*0.67,0)
lenze
 
Upvote 0

Forum statistics

Threads
1,224,594
Messages
6,179,795
Members
452,943
Latest member
Newbie4296

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