+ Reply to Thread
Results 1 to 10 of 10

Use of range in an if function

  1. #1
    helpmeplease
    Guest

    Use of range in an if function

    I have a nubmer of days that needs to fall into a certain week number for
    pricing calculations. If the number of days is 3:8 then it is 1 week; 9:15
    is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    correctly calculate week 1 and week 2. If I try to insert the week 3
    function, I get an error that there are too many arguments. "N5" is the cell
    with the number of days. I'm not very advanced with excel (it took me all
    morning to get this far), so I would appreciate any help. Thanks!!

    =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))

  2. #2
    CLR
    Guest

    RE: Use of range in an if function

    Maybe this..........

    =IF(N5>2,LOOKUP(N5,{3,9,16,22},{1,2,3,"Exceeds limit"}),"")

    Vaya con Dios,
    Chuck, CABGx3



    "helpmeplease" wrote:

    > I have a nubmer of days that needs to fall into a certain week number for
    > pricing calculations. If the number of days is 3:8 then it is 1 week; 9:15
    > is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    > correctly calculate week 1 and week 2. If I try to insert the week 3
    > function, I get an error that there are too many arguments. "N5" is the cell
    > with the number of days. I'm not very advanced with excel (it took me all
    > morning to get this far), so I would appreciate any help. Thanks!!
    >
    > =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))


  3. #3
    DaveO
    Guest

    RE: Use of range in an if function

    Try this...

    =IF(N1>=3, IF(N1>9, IF(N1>15, IF(N1>21, 0, 3), 2), 1), 0)

    I must say though that nesting that many IFs is a bit messy. Why not try
    using a look-up table of some description?

    HTH.

    "helpmeplease" wrote:

    > I have a nubmer of days that needs to fall into a certain week number for
    > pricing calculations. If the number of days is 3:8 then it is 1 week; 9:15
    > is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    > correctly calculate week 1 and week 2. If I try to insert the week 3
    > function, I get an error that there are too many arguments. "N5" is the cell
    > with the number of days. I'm not very advanced with excel (it took me all
    > morning to get this far), so I would appreciate any help. Thanks!!
    >
    > =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))


  4. #4
    pdberger
    Guest

    RE: Use of range in an if function

    Help --

    Try something like:

    =IF(N5<3,0,IF(N5<9,1,IF(N5<16,2,IF(N5<22,3,"Too Long!"))))

    The other smarter guys around here will have more elegant ways to do this,
    but it should work just fine.

    HTH

    "helpmeplease" wrote:

    > I have a nubmer of days that needs to fall into a certain week number for
    > pricing calculations. If the number of days is 3:8 then it is 1 week; 9:15
    > is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    > correctly calculate week 1 and week 2. If I try to insert the week 3
    > function, I get an error that there are too many arguments. "N5" is the cell
    > with the number of days. I'm not very advanced with excel (it took me all
    > morning to get this far), so I would appreciate any help. Thanks!!
    >
    > =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))


  5. #5
    Valued Forum Contributor
    Join Date
    03-25-2004
    Location
    Boston, MA US
    Posts
    1,094
    pdberger,

    Try this,

    =IF(N5>=16,3,IF(N5>=9,2,IF(N5>=3,1,0)))


    HTH

    Steve

  6. #6
    RagDyeR
    Guest

    Re: Use of range in an if function

    Try this:

    =LOOKUP(N5,{0,3,9,16;0,1,2,3})

    --

    HTH,

    RD
    =====================================================
    Please keep all correspondence within the Group, so all may benefit!
    =====================================================

    "helpmeplease" <helpmeplease@discussions.microsoft.com> wrote in message
    news:AB51D812-EDB0-42AB-97F4-E5F043E4F965@microsoft.com...
    I have a nubmer of days that needs to fall into a certain week number for
    pricing calculations. If the number of days is 3:8 then it is 1 week; 9:15
    is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    correctly calculate week 1 and week 2. If I try to insert the week 3
    function, I get an error that there are too many arguments. "N5" is the
    cell
    with the number of days. I'm not very advanced with excel (it took me all
    morning to get this far), so I would appreciate any help. Thanks!!

    =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))



  7. #7
    CLR
    Guest

    RE: Use of range in an if function

    Or...........

    =LOOKUP(N5,{0,3,9,16,22},{"",1,2,3,"Exceeds limit"})

    Vaya con Dios,
    Chuck, CABGx3



    "CLR" wrote:

    > Maybe this..........
    >
    > =IF(N5>2,LOOKUP(N5,{3,9,16,22},{1,2,3,"Exceeds limit"}),"")
    >
    > Vaya con Dios,
    > Chuck, CABGx3
    >
    >
    >
    > "helpmeplease" wrote:
    >
    > > I have a nubmer of days that needs to fall into a certain week number for
    > > pricing calculations. If the number of days is 3:8 then it is 1 week; 9:15
    > > is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    > > correctly calculate week 1 and week 2. If I try to insert the week 3
    > > function, I get an error that there are too many arguments. "N5" is the cell
    > > with the number of days. I'm not very advanced with excel (it took me all
    > > morning to get this far), so I would appreciate any help. Thanks!!
    > >
    > > =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))


  8. #8
    helpmeplease
    Guest

    RE: Use of range in an if function

    Thanks a bunch. I knew that my way was a messy way, but as I said I don't
    know that much about excel. It works now, though. Thanks.

    "CLR" wrote:

    > Maybe this..........
    >
    > =IF(N5>2,LOOKUP(N5,{3,9,16,22},{1,2,3,"Exceeds limit"}),"")
    >
    > Vaya con Dios,
    > Chuck, CABGx3
    >
    >
    >
    > "helpmeplease" wrote:
    >
    > > I have a nubmer of days that needs to fall into a certain week number for
    > > pricing calculations. If the number of days is 3:8 then it is 1 week; 9:15
    > > is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    > > correctly calculate week 1 and week 2. If I try to insert the week 3
    > > function, I get an error that there are too many arguments. "N5" is the cell
    > > with the number of days. I'm not very advanced with excel (it took me all
    > > morning to get this far), so I would appreciate any help. Thanks!!
    > >
    > > =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))


  9. #9
    CLR
    Guest

    RE: Use of range in an if function

    Happy to help.............thanks for the feedback.

    Vaya con Dios,
    Chuck, CABGx3



    "helpmeplease" wrote:

    > Thanks a bunch. I knew that my way was a messy way, but as I said I don't
    > know that much about excel. It works now, though. Thanks.
    >
    > "CLR" wrote:
    >
    > > Maybe this..........
    > >
    > > =IF(N5>2,LOOKUP(N5,{3,9,16,22},{1,2,3,"Exceeds limit"}),"")
    > >
    > > Vaya con Dios,
    > > Chuck, CABGx3
    > >
    > >
    > >
    > > "helpmeplease" wrote:
    > >
    > > > I have a nubmer of days that needs to fall into a certain week number for
    > > > pricing calculations. If the number of days is 3:8 then it is 1 week; 9:15
    > > > is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    > > > correctly calculate week 1 and week 2. If I try to insert the week 3
    > > > function, I get an error that there are too many arguments. "N5" is the cell
    > > > with the number of days. I'm not very advanced with excel (it took me all
    > > > morning to get this far), so I would appreciate any help. Thanks!!
    > > >
    > > > =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))


  10. #10
    Dana DeLouis
    Guest

    Re: Use of range in an if function

    Just to be different. Doesn't have error checking though.

    =--(N5>=3)+(N5>=9)+(N5>=16)

    --
    HTH. :>)
    Dana DeLouis
    Windows XP, Office 2003


    "helpmeplease" <helpmeplease@discussions.microsoft.com> wrote in message
    news:AB51D812-EDB0-42AB-97F4-E5F043E4F965@microsoft.com...
    >I have a nubmer of days that needs to fall into a certain week number for
    > pricing calculations. If the number of days is 3:8 then it is 1 week;
    > 9:15
    > is 2 weeks; and 16:21 is 3 weeks. Right now the function is able to
    > correctly calculate week 1 and week 2. If I try to insert the week 3
    > function, I get an error that there are too many arguments. "N5" is the
    > cell
    > with the number of days. I'm not very advanced with excel (it took me all
    > morning to get this far), so I would appreciate any help. Thanks!!
    >
    > =IF(N5<9,IF(N5>2,1,0),IF(N5<16,IF(N5>8,2,0),0))




+ 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