+ Reply to Thread
Results 1 to 5 of 5

How do I set a mimimum quotient value?

  1. #1
    Robert
    Guest

    How do I set a mimimum quotient value?

    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

  2. #2
    JE McGimpsey
    Guest

    Re: How do I set a mimimum quotient value?

    One way:

    =MAX(1, A/B)

    In article <[email protected]>,
    Robert <[email protected]> wrote:

    > 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


  3. #3
    Niek Otten
    Guest

    Re: How do I set a mimimum quotient value?

    Hi Robert,

    =MAX(1,A1/B1)

    --

    Kind Regards,

    Niek Otten

    Microsoft MVP - Excel

    "Robert" <[email protected]> wrote in message
    news:[email protected]...
    > 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




  4. #4
    Patti
    Guest

    RE: How do I set a mimimum quotient value?

    Is this what you're looking for:

    IF(A1/B1<1,1,A1/B1)


    "Robert" wrote:

    > 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


  5. #5
    Jason Morin
    Guest

    Re: How do I set a mimimum quotient value?

    =MAX(A/B,1)

    If you really mean quotient, try:

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

    HTH
    Jason
    Atlanta, GA

    >-----Original Message-----
    >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
    >.
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1