+ Reply to Thread
Results 1 to 7 of 7

multiple conditions formula

  1. #1
    Tom Ogilvy
    Guest

    Re: multiple conditions formula

    =if(Q3>90,"A",if(Q3>=80,"B",if(Q3>=70,"C",if(Q3>=60,"D","F"))))

    Anything greater than 90 is filtered out by the first condition, so it
    doesn't need to be considered in subsequent conditions.
    --
    Regards,
    Tom Ogilvy

    "mmoran" <[email protected]> wrote in message
    news:[email protected]...
    > I am a teacher and am working on excel for my grades. I am tyring to

    write a
    > formula that has an output of a letter grade. For example =if(AND

    (AQ3<100,
    > AQ3>90), "A" but then I want the condition of =if (AND(AQ3<89, AQ3>80),
    > "B" and so on.
    >
    > How do I write this formula?
    >
    > Megan




  2. #2
    aristotle
    Guest

    RE: multiple conditions formula

    Have a look at this post on mrexcel.com for a solution that avoids nesting so
    many IF()'s within each other:

    http://www.mrexcel.com/board2/viewtopic.php?t=159646

    "mmoran" wrote:

    > I am a teacher and am working on excel for my grades. I am tyring to write a
    > formula that has an output of a letter grade. For example =if(AND (AQ3<100,
    > AQ3>90), "A" but then I want the condition of =if (AND(AQ3<89, AQ3>80),
    > "B" and so on.
    >
    > How do I write this formula?
    >
    > Megan


  3. #3
    abqhusker
    Guest

    Re: multiple conditions formula

    mmoran wrote:
    > I am a teacher and am working on excel for my grades. I am tyring to write a
    > formula that has an output of a letter grade. For example =if(AND (AQ3<100,
    > AQ3>90), "A" but then I want the condition of =if (AND(AQ3<89, AQ3>80),
    > "B" and so on.
    >
    > How do I write this formula?
    >
    > Megan



    This is how I do it for my gradebook, just change the numbers and cell
    references:

    =IF(E4>=0.91,"A",IF(E4>=0.81,"B",
    IF(E4>=0.71,"C",IF(E4>=0.61,"D","F"))))

  4. #4
    mmoran
    Guest

    multiple conditions formula

    I am a teacher and am working on excel for my grades. I am tyring to write a
    formula that has an output of a letter grade. For example =if(AND (AQ3<100,
    AQ3>90), "A" but then I want the condition of =if (AND(AQ3<89, AQ3>80),
    "B" and so on.

    How do I write this formula?

    Megan

  5. #5
    Tom Ogilvy
    Guest

    Re: multiple conditions formula

    =if(Q3>90,"A",if(Q3>=80,"B",if(Q3>=70,"C",if(Q3>=60,"D","F"))))

    Anything greater than 90 is filtered out by the first condition, so it
    doesn't need to be considered in subsequent conditions.
    --
    Regards,
    Tom Ogilvy

    "mmoran" <[email protected]> wrote in message
    news:[email protected]...
    > I am a teacher and am working on excel for my grades. I am tyring to

    write a
    > formula that has an output of a letter grade. For example =if(AND

    (AQ3<100,
    > AQ3>90), "A" but then I want the condition of =if (AND(AQ3<89, AQ3>80),
    > "B" and so on.
    >
    > How do I write this formula?
    >
    > Megan




  6. #6
    aristotle
    Guest

    RE: multiple conditions formula

    Have a look at this post on mrexcel.com for a solution that avoids nesting so
    many IF()'s within each other:

    http://www.mrexcel.com/board2/viewtopic.php?t=159646

    "mmoran" wrote:

    > I am a teacher and am working on excel for my grades. I am tyring to write a
    > formula that has an output of a letter grade. For example =if(AND (AQ3<100,
    > AQ3>90), "A" but then I want the condition of =if (AND(AQ3<89, AQ3>80),
    > "B" and so on.
    >
    > How do I write this formula?
    >
    > Megan


  7. #7
    abqhusker
    Guest

    Re: multiple conditions formula

    mmoran wrote:
    > I am a teacher and am working on excel for my grades. I am tyring to write a
    > formula that has an output of a letter grade. For example =if(AND (AQ3<100,
    > AQ3>90), "A" but then I want the condition of =if (AND(AQ3<89, AQ3>80),
    > "B" and so on.
    >
    > How do I write this formula?
    >
    > Megan



    This is how I do it for my gradebook, just change the numbers and cell
    references:

    =IF(E4>=0.91,"A",IF(E4>=0.81,"B",
    IF(E4>=0.71,"C",IF(E4>=0.61,"D","F"))))

+ 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