Need Assistance With Percentage Formula

jesse lee

New Member
Joined
Sep 18, 2004
Messages
23
My formula is meant to calulate the number of device needed based on the capacity characteristics of the user. The device has 100 ports.
For Business users, the ratio is 80 users per port, for Residential users the ratio is 160 users per port.

I am using the following formula:
ROUNDUP(I5*H14/160/100,0)+ROUNDUP(I5*(1-H14)/80/100,0)

I5=Number of Subscribers
H14=Percentage of Residential users

The problem I have is that this formula does not take into consideration any capacity remaining from the first calulation, so if I have:
I5=9000 subscribers and
H14=1% residential
the actual total is 1.119735, however using the ROUNDUP formula above, I get a Sum of 3 instead of the next whole number which should be 2.

Any advise is greatly appreciated
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
If I undrstand it. Try the following formula

ROUNDUP( ((I5*H14)/160) + ((I5*(1-H14))/80) ; 0)

JH
 
Upvote 0
Hi Jesse lee.

Maybe this?

=ROUNDUP((((I5*H4)/160)+((I5*(1-H4))/80))/100,0)

HTH
 
Upvote 0

Forum statistics

Threads
1,214,396
Messages
6,119,268
Members
448,881
Latest member
Faxgirl

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