+ Reply to Thread
Results 1 to 11 of 11

Nested IF error

Hybrid View

Guest Nested IF error 02-03-2006, 09:20 AM
Guest Re: Nested IF error 02-03-2006, 09:30 AM
Guest Re: Nested IF error 02-03-2006, 10:35 AM
Guest Re: Nested IF error 02-03-2006, 11:40 AM
Guest Re: Nested IF error 02-03-2006, 11:40 AM
Guest Re: Nested IF error 02-05-2006, 09:55 AM
Guest RE: Nested IF error 02-03-2006, 09:35 AM
  1. #1
    Ricardo Monteiro :^)
    Guest

    Nested IF error

    If A1 is <5, the result is "Cold"; if A1 is >5, the result is "Hot"; if A1 is
    >10, the result is "Very hot".


    I tried different formulas from the help forum, but it keeps saying there's
    an error.
    I'm using Excel 2003 SP 2.

    Thanks in advance

  2. #2
    Don Guillett
    Guest

    Re: Nested IF error

    try working from the top down
    =if(a1>10,"very hot",if(a1>5, "hot","cold"))

    --
    Don Guillett
    SalesAid Software
    dguillett1@austin.rr.com
    "Ricardo Monteiro :^)" <RicardoMonteiro@discussions.microsoft.com> wrote in
    message news:63666FEF-E549-4DC1-B373-6A3A227CF045@microsoft.com...
    > If A1 is <5, the result is "Cold"; if A1 is >5, the result is "Hot"; if A1
    > is
    >>10, the result is "Very hot".

    >
    > I tried different formulas from the help forum, but it keeps saying
    > there's
    > an error.
    > I'm using Excel 2003 SP 2.
    >
    > Thanks in advance




  3. #3
    Ricardo Monteiro :^)
    Guest

    Re: Nested IF error

    That's working, but I try to add more and it says it has too much.
    Any help?

    Thank you both.

    "Don Guillett" escreveu:

    > try working from the top down
    > =if(a1>10,"very hot",if(a1>5, "hot","cold"))



  4. #4
    Don Guillett
    Guest

    Re: Nested IF error

    For more than 7 I suggest a lookup table. Look in help index for VLOOKUP

    --
    Don Guillett
    SalesAid Software
    dguillett1@austin.rr.com
    "Ricardo Monteiro :^)" <RicardoMonteiro@discussions.microsoft.com> wrote in
    message news:39E8449E-1482-401C-8E71-37CF78E13443@microsoft.com...
    > That's working, but I try to add more and it says it has too much.
    > Any help?
    >
    > Thank you both.
    >
    > "Don Guillett" escreveu:
    >
    >> try working from the top down
    >> =if(a1>10,"very hot",if(a1>5, "hot","cold"))

    >




  5. #5
    Ron Rosenfeld
    Guest

    Re: Nested IF error

    On Fri, 3 Feb 2006 06:33:10 -0800, "Ricardo Monteiro :^)"
    <RicardoMonteiro@discussions.microsoft.com> wrote:

    >That's working, but I try to add more and it says it has too much.
    >Any help?
    >
    >Thank you both.
    >
    >"Don Guillett" escreveu:
    >
    >> try working from the top down
    >> =if(a1>10,"very hot",if(a1>5, "hot","cold"))


    Without more detail, it's hard to say.

    I've not seen an error message that says "too much". Is that the full text of
    the error message?

    There is a limit of seven nested functions.
    --ron

  6. #6
    Ricardo Monteiro :^)
    Guest

    Re: Nested IF error

    Sorry for the delay. in the meantime your suggested formulas helped to solve
    the problem. I'm afraid I can't quote the exact error that appeared before,
    because I'm using an international version of MS Office.
    Thanks again

    "Ron Rosenfeld" escreveu:

    > On Fri, 3 Feb 2006 06:33:10 -0800, "Ricardo Monteiro :^)"
    > <RicardoMonteiro@discussions.microsoft.com> wrote:
    >
    > >That's working, but I try to add more and it says it has too much.
    > >Any help?
    > >
    > >Thank you both.
    > >
    > >"Don Guillett" escreveu:
    > >
    > >> try working from the top down
    > >> =if(a1>10,"very hot",if(a1>5, "hot","cold"))

    >
    > Without more detail, it's hard to say.
    >
    > I've not seen an error message that says "too much". Is that the full text of
    > the error message?
    >
    > There is a limit of seven nested functions.
    > --ron
    >


  7. #7
    Ron Rosenfeld
    Guest

    Re: Nested IF error

    On Sun, 5 Feb 2006 05:51:26 -0800, "Ricardo Monteiro :^)"
    <RicardoMonteiro@discussions.microsoft.com> wrote:

    >Sorry for the delay. in the meantime your suggested formulas helped to solve
    >the problem. I'm afraid I can't quote the exact error that appeared before,
    >because I'm using an international version of MS Office.
    >Thanks again


    Well, I'm glad you've got it working.

    Although I don't really understand the relationship of Excel version and
    inability to provide an error message. Maybe there's a language problem
    impeding my understanding of this issue.
    --ron

  8. #8
    Barb Reinhardt
    Guest

    RE: Nested IF error

    You don't have a condition if A1 = 5. For what you've asked for, here is
    your equation

    =IF(A1<5,"Cold",IF(AND(A1>5,A1<=10),"Hot",IF(A1>10,"Very Hot",NA())))

    "Ricardo Monteiro :^)" wrote:

    > If A1 is <5, the result is "Cold"; if A1 is >5, the result is "Hot"; if A1 is
    > >10, the result is "Very hot".

    >
    > I tried different formulas from the help forum, but it keeps saying there's
    > an error.
    > I'm using Excel 2003 SP 2.
    >
    > Thanks in advance


+ 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