Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
guillaumet
 
Posts: n/a
Default Help with formula

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 !!!

:-)

  #2   Report Post  
Vasant Nanavati
 
Posts: n/a
Default

=ROUNDUP(Your_Sum,0)

--

Vasant


"guillaumet" wrote in message
...
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 !!!

:-)



  #3   Report Post  
Dana DeLouis
 
Posts: n/a
Default

...I126 referrers to a cell that has a total ...

Hi. Would this idea work?

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

--
Dana DeLouis
Win XP & Office 2003


"guillaumet" wrote in message
...
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 !!!

:-)



  #4   Report Post  
guillaumet
 
Posts: n/a
Default

Thank you...How should I include the roundup formula inside my formula ?

thanks again

"Vasant Nanavati" wrote:

=ROUNDUP(Your_Sum,0)

--

Vasant


"guillaumet" wrote in message
...
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 !!!

:-)




  #5   Report Post  
mikebres
 
Posts: n/a
Default

How about

=ROUNDUP(IF((SUM(C2)/10)<2,2,SUM(C2)/10),0)

Mike

"guillaumet" wrote:

Thank you...How should I include the roundup formula inside my formula ?

thanks again

"Vasant Nanavati" wrote:

=ROUNDUP(Your_Sum,0)

--

Vasant


"guillaumet" wrote in message
...
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 !!!

:-)






  #6   Report Post  
guillaumet
 
Posts: n/a
Default

This formula works great ! Thanks again all for sharing your knowledge !

"Dana DeLouis" wrote:

...I126 referrers to a cell that has a total ...


Hi. Would this idea work?

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

--
Dana DeLouis
Win XP & Office 2003


"guillaumet" wrote in message
...
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 !!!

:-)




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
referencing named formula using INDIRECT function [email protected] Excel Worksheet Functions 19 May 11th 05 09:48 AM
Simplify formula Luke Excel Worksheet Functions 37 May 6th 05 07:21 AM
put formula results into a different cell if it is empty PutFormula Excel Worksheet Functions 2 February 11th 05 03:31 AM
how do i write a formula and keep in in formula form, so it DOESN. norcalchick2207 Excel Discussion (Misc queries) 2 February 4th 05 08:38 PM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


All times are GMT +1. The time now is 12:03 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"