Help with formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have the following formulat that helps calculate the number of processors
needed from the client/server software appication I sell. Bottom line, if a
customer wants x amount of concurent clients, he will need x/10 processors.
For example, if a customer wants 40 concurent client acess, he will need a 4
processor server.
I also included the fact that 2 processor minimium are required. So if a
customer wants 10x concurent client, he will need a 2 processor server.
The formula below works, I126 referers to a cell that has a total anmount of
concurent clients.

=IF((SUM(I126)/10)<2,2,SUM(I126)/10)

Now, I need to add another formula, that if the SUM has one decimal, than
the SUM should go to the next number. For example if the sum is 2.1, than the
sum should be 3.

Thanks for ANY help !!!

:-)
 
...I126 referrers to a cell that has a total ...

Hi. Would this idea work?

=MAX(ROUNDUP(I126/10,0),2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top