How do I set a mimimum quotient value?

G

Guest

Is there a way to set the mimum value at 1 for all quotients?

Example:
A/B=C How do I get C to be a minimum of 1 if the quotient of A/B= less than 1?

Any help is greatly appreciated.

Robert
 
J

Jason Morin

=MAX(A/B,1)

If you really mean quotient, try:

=MAX(INT(A/B),1)

HTH
Jason
Atlanta, GA
 

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

Top