+ Reply to Thread
Results 1 to 46 of 46

Nesting excel greater than 7 arguments

  1. #1
    Chris Berding
    Guest

    Re: Nesting excel greater than 7 arguments

    Mayn, you guys are GOOD. I've created another problem now =) I'll post it
    under a separate heading. THANK YOU!!!

    "Ken Wright" wrote:

    > On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    > This assumes that you have rates in cells B17:B28. If not then you should
    > be able to work out what's going on here. The 0 should be against your
    > lowest rate:-
    >
    > Now replace your formula with the following:-
    >
    > =Q3*VLOOKUP(F3,$A$17:$B$28,2)
    >
    > Take a look at the help on the VLOOKUP function
    >
    > --
    > Regards
    > Ken....................... Microsoft MVP - Excel
    > Sys Spec - Win XP Pro / XL 97/00/02/03
    >
    > ------------------------------*------------------------------*----------------
    > It's easier to beg forgiveness than ask permission :-)
    > ------------------------------*------------------------------*----------------
    >
    >
    > "Chris Berding" <Chris [email protected]> wrote in message
    > news:[email protected]...
    > > I'm trying to nest greater than 7 arguments, based on a variable rate
    > > structure. For example, there are 8 different age catories, and 9
    > > different
    > > rates... so depending on the person's age, i need to use a different rate.
    > > I
    > > have successfully nested the maximum, but it leaves me with three age
    > > groups
    > > that I can't calculate automatically.
    > > Here is my formula so far:
    > > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > > calc."))))))))
    > >
    > > It doesnt work or anyone under 40 so i have to manually calculate any
    > > clients who's age is less than 40.
    > >
    > > Grateful if you have a way around Microsoft's maximum!

    >
    >
    >


  2. #2
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Grrrrrrrr, correction

    =Q3*OFFSET(VolLifeRates!$B$20,MIN(0,INT(F3/5)-6),)

    Regards
    Ken.....................


    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    > Another possible option involving no additional data:-
    >
    > Assuming your first rate starts in B20
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)
    >
    > Regards
    > Ken...............
    >
    >




  3. #3
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Another possible option involving no additional data:-

    Assuming your first rate starts in B20

    =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)

    Regards
    Ken...............



  4. #4
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................



  5. #5
    Bob Phillips
    Guest

    Re: Nesting excel greater than 7 arguments

    You have two tests for >=40 here so my solution might need some adjustment

    =IF(F3<40,"manual
    calc.",Q3*OFFSET(VolLifeRates!$B$19,VLOOKUP(F3,{0,1;40,2;45,3;50,4;55,5;60,6
    ;65,7;70,8},2),0))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9

    different
    > rates... so depending on the person's age, i need to use a different rate.

    I
    > have successfully nested the maximum, but it leaves me with three age

    groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    >

    =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q
    3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRat
    es!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(
    F3>=40,Q3*VolLifeRates!$B$21,"manual calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  6. #6
    RagDyeR
    Guest

    Re: Nesting excel greater than 7 arguments

    When I see 5 posts in a row, all from the same author, I figure that either
    his news reader is broken, and he can't see what he's already posted, OR ...
    he's got soooo much money in the bank, that he's talking to himself.<g>

    I can see that your news reader isn't broken.<vbg>
    --

    Regards,

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

    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................




  7. #7
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    LOL - Got fed up with this one - hate making dumb mistakes - grrrrrrrrrrr
    :-)

    Regards
    Ken...............


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    > When I see 5 posts in a row, all from the same author, I figure that
    > either
    > his news reader is broken, and he can't see what he's already posted, OR
    > ...
    > he's got soooo much money in the bank, that he's talking to himself.<g>
    >
    > I can see that your news reader isn't broken.<vbg>
    > --
    >
    > Regards,
    >
    > RD
    > ----------------------------------------------------------------------------
    > -------------------
    > Please keep all correspondence within the Group, so all may benefit !
    > ----------------------------------------------------------------------------
    > -------------------
    >
    > "Ken Wright" <[email protected]> wrote in message
    > news:[email protected]...
    > For crying out loud - Going to bed now!!!!!!!!!
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)
    >
    > Regards
    > Ken.....................
    >
    >
    >




  8. #8
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Oops - make that

    =Q3*VLOOKUP(F3,VolLifeRates!$A$17:$B$28,2)

    Regards
    Ken................



  9. #9
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    This assumes that you have rates in cells B17:B28. If not then you should
    be able to work out what's going on here. The 0 should be against your
    lowest rate:-

    Now replace your formula with the following:-

    =Q3*VLOOKUP(F3,$A$17:$B$28,2)

    Take a look at the help on the VLOOKUP function

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9
    > different
    > rates... so depending on the person's age, i need to use a different rate.
    > I
    > have successfully nested the maximum, but it leaves me with three age
    > groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  10. #10
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Oops - make that

    =Q3*VLOOKUP(F3,VolLifeRates!$A$17:$B$28,2)

    Regards
    Ken................



  11. #11
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    LOL - Got fed up with this one - hate making dumb mistakes - grrrrrrrrrrr
    :-)

    Regards
    Ken...............


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    > When I see 5 posts in a row, all from the same author, I figure that
    > either
    > his news reader is broken, and he can't see what he's already posted, OR
    > ...
    > he's got soooo much money in the bank, that he's talking to himself.<g>
    >
    > I can see that your news reader isn't broken.<vbg>
    > --
    >
    > Regards,
    >
    > RD
    > ----------------------------------------------------------------------------
    > -------------------
    > Please keep all correspondence within the Group, so all may benefit !
    > ----------------------------------------------------------------------------
    > -------------------
    >
    > "Ken Wright" <[email protected]> wrote in message
    > news:[email protected]...
    > For crying out loud - Going to bed now!!!!!!!!!
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)
    >
    > Regards
    > Ken.....................
    >
    >
    >




  12. #12
    Bob Phillips
    Guest

    Re: Nesting excel greater than 7 arguments

    You have two tests for >=40 here so my solution might need some adjustment

    =IF(F3<40,"manual
    calc.",Q3*OFFSET(VolLifeRates!$B$19,VLOOKUP(F3,{0,1;40,2;45,3;50,4;55,5;60,6
    ;65,7;70,8},2),0))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9

    different
    > rates... so depending on the person's age, i need to use a different rate.

    I
    > have successfully nested the maximum, but it leaves me with three age

    groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    >

    =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q
    3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRat
    es!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(
    F3>=40,Q3*VolLifeRates!$B$21,"manual calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  13. #13
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    This assumes that you have rates in cells B17:B28. If not then you should
    be able to work out what's going on here. The 0 should be against your
    lowest rate:-

    Now replace your formula with the following:-

    =Q3*VLOOKUP(F3,$A$17:$B$28,2)

    Take a look at the help on the VLOOKUP function

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9
    > different
    > rates... so depending on the person's age, i need to use a different rate.
    > I
    > have successfully nested the maximum, but it leaves me with three age
    > groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  14. #14
    RagDyeR
    Guest

    Re: Nesting excel greater than 7 arguments

    When I see 5 posts in a row, all from the same author, I figure that either
    his news reader is broken, and he can't see what he's already posted, OR ...
    he's got soooo much money in the bank, that he's talking to himself.<g>

    I can see that your news reader isn't broken.<vbg>
    --

    Regards,

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

    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................




  15. #15
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................



  16. #16
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Another possible option involving no additional data:-

    Assuming your first rate starts in B20

    =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)

    Regards
    Ken...............



  17. #17
    Chris Berding
    Guest

    Re: Nesting excel greater than 7 arguments

    Mayn, you guys are GOOD. I've created another problem now =) I'll post it
    under a separate heading. THANK YOU!!!

    "Ken Wright" wrote:

    > On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    > This assumes that you have rates in cells B17:B28. If not then you should
    > be able to work out what's going on here. The 0 should be against your
    > lowest rate:-
    >
    > Now replace your formula with the following:-
    >
    > =Q3*VLOOKUP(F3,$A$17:$B$28,2)
    >
    > Take a look at the help on the VLOOKUP function
    >
    > --
    > Regards
    > Ken....................... Microsoft MVP - Excel
    > Sys Spec - Win XP Pro / XL 97/00/02/03
    >
    > ------------------------------Â*------------------------------Â*----------------
    > It's easier to beg forgiveness than ask permission :-)
    > ------------------------------Â*------------------------------Â*----------------
    >
    >
    > "Chris Berding" <Chris [email protected]> wrote in message
    > news:[email protected]...
    > > I'm trying to nest greater than 7 arguments, based on a variable rate
    > > structure. For example, there are 8 different age catories, and 9
    > > different
    > > rates... so depending on the person's age, i need to use a different rate.
    > > I
    > > have successfully nested the maximum, but it leaves me with three age
    > > groups
    > > that I can't calculate automatically.
    > > Here is my formula so far:
    > > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > > calc."))))))))
    > >
    > > It doesnt work or anyone under 40 so i have to manually calculate any
    > > clients who's age is less than 40.
    > >
    > > Grateful if you have a way around Microsoft's maximum!

    >
    >
    >


  18. #18
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Grrrrrrrr, correction

    =Q3*OFFSET(VolLifeRates!$B$20,MIN(0,INT(F3/5)-6),)

    Regards
    Ken.....................


    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    > Another possible option involving no additional data:-
    >
    > Assuming your first rate starts in B20
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)
    >
    > Regards
    > Ken...............
    >
    >




  19. #19
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    LOL - Got fed up with this one - hate making dumb mistakes - grrrrrrrrrrr
    :-)

    Regards
    Ken...............


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    > When I see 5 posts in a row, all from the same author, I figure that
    > either
    > his news reader is broken, and he can't see what he's already posted, OR
    > ...
    > he's got soooo much money in the bank, that he's talking to himself.<g>
    >
    > I can see that your news reader isn't broken.<vbg>
    > --
    >
    > Regards,
    >
    > RD
    > ----------------------------------------------------------------------------
    > -------------------
    > Please keep all correspondence within the Group, so all may benefit !
    > ----------------------------------------------------------------------------
    > -------------------
    >
    > "Ken Wright" <[email protected]> wrote in message
    > news:[email protected]...
    > For crying out loud - Going to bed now!!!!!!!!!
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)
    >
    > Regards
    > Ken.....................
    >
    >
    >




  20. #20
    RagDyeR
    Guest

    Re: Nesting excel greater than 7 arguments

    When I see 5 posts in a row, all from the same author, I figure that either
    his news reader is broken, and he can't see what he's already posted, OR ...
    he's got soooo much money in the bank, that he's talking to himself.<g>

    I can see that your news reader isn't broken.<vbg>
    --

    Regards,

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

    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................




  21. #21
    Chris Berding
    Guest

    Re: Nesting excel greater than 7 arguments

    Mayn, you guys are GOOD. I've created another problem now =) I'll post it
    under a separate heading. THANK YOU!!!

    "Ken Wright" wrote:

    > On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    > This assumes that you have rates in cells B17:B28. If not then you should
    > be able to work out what's going on here. The 0 should be against your
    > lowest rate:-
    >
    > Now replace your formula with the following:-
    >
    > =Q3*VLOOKUP(F3,$A$17:$B$28,2)
    >
    > Take a look at the help on the VLOOKUP function
    >
    > --
    > Regards
    > Ken....................... Microsoft MVP - Excel
    > Sys Spec - Win XP Pro / XL 97/00/02/03
    >
    > ------------------------------Â*------------------------------Â*----------------
    > It's easier to beg forgiveness than ask permission :-)
    > ------------------------------Â*------------------------------Â*----------------
    >
    >
    > "Chris Berding" <Chris [email protected]> wrote in message
    > news:[email protected]...
    > > I'm trying to nest greater than 7 arguments, based on a variable rate
    > > structure. For example, there are 8 different age catories, and 9
    > > different
    > > rates... so depending on the person's age, i need to use a different rate.
    > > I
    > > have successfully nested the maximum, but it leaves me with three age
    > > groups
    > > that I can't calculate automatically.
    > > Here is my formula so far:
    > > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > > calc."))))))))
    > >
    > > It doesnt work or anyone under 40 so i have to manually calculate any
    > > clients who's age is less than 40.
    > >
    > > Grateful if you have a way around Microsoft's maximum!

    >
    >
    >


  22. #22
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................



  23. #23
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    This assumes that you have rates in cells B17:B28. If not then you should
    be able to work out what's going on here. The 0 should be against your
    lowest rate:-

    Now replace your formula with the following:-

    =Q3*VLOOKUP(F3,$A$17:$B$28,2)

    Take a look at the help on the VLOOKUP function

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9
    > different
    > rates... so depending on the person's age, i need to use a different rate.
    > I
    > have successfully nested the maximum, but it leaves me with three age
    > groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  24. #24
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Grrrrrrrr, correction

    =Q3*OFFSET(VolLifeRates!$B$20,MIN(0,INT(F3/5)-6),)

    Regards
    Ken.....................


    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    > Another possible option involving no additional data:-
    >
    > Assuming your first rate starts in B20
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)
    >
    > Regards
    > Ken...............
    >
    >




  25. #25
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Another possible option involving no additional data:-

    Assuming your first rate starts in B20

    =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)

    Regards
    Ken...............



  26. #26
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Oops - make that

    =Q3*VLOOKUP(F3,VolLifeRates!$A$17:$B$28,2)

    Regards
    Ken................



  27. #27
    Bob Phillips
    Guest

    Re: Nesting excel greater than 7 arguments

    You have two tests for >=40 here so my solution might need some adjustment

    =IF(F3<40,"manual
    calc.",Q3*OFFSET(VolLifeRates!$B$19,VLOOKUP(F3,{0,1;40,2;45,3;50,4;55,5;60,6
    ;65,7;70,8},2),0))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9

    different
    > rates... so depending on the person's age, i need to use a different rate.

    I
    > have successfully nested the maximum, but it leaves me with three age

    groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    >

    =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q
    3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRat
    es!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(
    F3>=40,Q3*VolLifeRates!$B$21,"manual calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  28. #28
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Grrrrrrrr, correction

    =Q3*OFFSET(VolLifeRates!$B$20,MIN(0,INT(F3/5)-6),)

    Regards
    Ken.....................


    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    > Another possible option involving no additional data:-
    >
    > Assuming your first rate starts in B20
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)
    >
    > Regards
    > Ken...............
    >
    >




  29. #29
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    This assumes that you have rates in cells B17:B28. If not then you should
    be able to work out what's going on here. The 0 should be against your
    lowest rate:-

    Now replace your formula with the following:-

    =Q3*VLOOKUP(F3,$A$17:$B$28,2)

    Take a look at the help on the VLOOKUP function

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9
    > different
    > rates... so depending on the person's age, i need to use a different rate.
    > I
    > have successfully nested the maximum, but it leaves me with three age
    > groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  30. #30
    Chris Berding
    Guest

    Re: Nesting excel greater than 7 arguments

    Mayn, you guys are GOOD. I've created another problem now =) I'll post it
    under a separate heading. THANK YOU!!!

    "Ken Wright" wrote:

    > On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    > This assumes that you have rates in cells B17:B28. If not then you should
    > be able to work out what's going on here. The 0 should be against your
    > lowest rate:-
    >
    > Now replace your formula with the following:-
    >
    > =Q3*VLOOKUP(F3,$A$17:$B$28,2)
    >
    > Take a look at the help on the VLOOKUP function
    >
    > --
    > Regards
    > Ken....................... Microsoft MVP - Excel
    > Sys Spec - Win XP Pro / XL 97/00/02/03
    >
    > ------------------------------Â*------------------------------Â*----------------
    > It's easier to beg forgiveness than ask permission :-)
    > ------------------------------Â*------------------------------Â*----------------
    >
    >
    > "Chris Berding" <Chris [email protected]> wrote in message
    > news:[email protected]...
    > > I'm trying to nest greater than 7 arguments, based on a variable rate
    > > structure. For example, there are 8 different age catories, and 9
    > > different
    > > rates... so depending on the person's age, i need to use a different rate.
    > > I
    > > have successfully nested the maximum, but it leaves me with three age
    > > groups
    > > that I can't calculate automatically.
    > > Here is my formula so far:
    > > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > > calc."))))))))
    > >
    > > It doesnt work or anyone under 40 so i have to manually calculate any
    > > clients who's age is less than 40.
    > >
    > > Grateful if you have a way around Microsoft's maximum!

    >
    >
    >


  31. #31
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Oops - make that

    =Q3*VLOOKUP(F3,VolLifeRates!$A$17:$B$28,2)

    Regards
    Ken................



  32. #32
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    LOL - Got fed up with this one - hate making dumb mistakes - grrrrrrrrrrr
    :-)

    Regards
    Ken...............


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    > When I see 5 posts in a row, all from the same author, I figure that
    > either
    > his news reader is broken, and he can't see what he's already posted, OR
    > ...
    > he's got soooo much money in the bank, that he's talking to himself.<g>
    >
    > I can see that your news reader isn't broken.<vbg>
    > --
    >
    > Regards,
    >
    > RD
    > ----------------------------------------------------------------------------
    > -------------------
    > Please keep all correspondence within the Group, so all may benefit !
    > ----------------------------------------------------------------------------
    > -------------------
    >
    > "Ken Wright" <[email protected]> wrote in message
    > news:[email protected]...
    > For crying out loud - Going to bed now!!!!!!!!!
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)
    >
    > Regards
    > Ken.....................
    >
    >
    >




  33. #33
    RagDyeR
    Guest

    Re: Nesting excel greater than 7 arguments

    When I see 5 posts in a row, all from the same author, I figure that either
    his news reader is broken, and he can't see what he's already posted, OR ...
    he's got soooo much money in the bank, that he's talking to himself.<g>

    I can see that your news reader isn't broken.<vbg>
    --

    Regards,

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

    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................




  34. #34
    Bob Phillips
    Guest

    Re: Nesting excel greater than 7 arguments

    You have two tests for >=40 here so my solution might need some adjustment

    =IF(F3<40,"manual
    calc.",Q3*OFFSET(VolLifeRates!$B$19,VLOOKUP(F3,{0,1;40,2;45,3;50,4;55,5;60,6
    ;65,7;70,8},2),0))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9

    different
    > rates... so depending on the person's age, i need to use a different rate.

    I
    > have successfully nested the maximum, but it leaves me with three age

    groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    >

    =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q
    3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRat
    es!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(
    F3>=40,Q3*VolLifeRates!$B$21,"manual calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  35. #35
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Another possible option involving no additional data:-

    Assuming your first rate starts in B20

    =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)

    Regards
    Ken...............



  36. #36
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................



  37. #37
    RagDyeR
    Guest

    Re: Nesting excel greater than 7 arguments

    When I see 5 posts in a row, all from the same author, I figure that either
    his news reader is broken, and he can't see what he's already posted, OR ...
    he's got soooo much money in the bank, that he's talking to himself.<g>

    I can see that your news reader isn't broken.<vbg>
    --

    Regards,

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

    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................




  38. #38
    Bob Phillips
    Guest

    Re: Nesting excel greater than 7 arguments

    You have two tests for >=40 here so my solution might need some adjustment

    =IF(F3<40,"manual
    calc.",Q3*OFFSET(VolLifeRates!$B$19,VLOOKUP(F3,{0,1;40,2;45,3;50,4;55,5;60,6
    ;65,7;70,8},2),0))

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9

    different
    > rates... so depending on the person's age, i need to use a different rate.

    I
    > have successfully nested the maximum, but it leaves me with three age

    groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    >

    =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q
    3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRat
    es!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(
    F3>=40,Q3*VolLifeRates!$B$21,"manual calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  39. #39
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    LOL - Got fed up with this one - hate making dumb mistakes - grrrrrrrrrrr
    :-)

    Regards
    Ken...............


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    > When I see 5 posts in a row, all from the same author, I figure that
    > either
    > his news reader is broken, and he can't see what he's already posted, OR
    > ...
    > he's got soooo much money in the bank, that he's talking to himself.<g>
    >
    > I can see that your news reader isn't broken.<vbg>
    > --
    >
    > Regards,
    >
    > RD
    > ----------------------------------------------------------------------------
    > -------------------
    > Please keep all correspondence within the Group, so all may benefit !
    > ----------------------------------------------------------------------------
    > -------------------
    >
    > "Ken Wright" <[email protected]> wrote in message
    > news:[email protected]...
    > For crying out loud - Going to bed now!!!!!!!!!
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)
    >
    > Regards
    > Ken.....................
    >
    >
    >




  40. #40
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Another possible option involving no additional data:-

    Assuming your first rate starts in B20

    =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)

    Regards
    Ken...............



  41. #41
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Oops - make that

    =Q3*VLOOKUP(F3,VolLifeRates!$A$17:$B$28,2)

    Regards
    Ken................



  42. #42
    Chris Berding
    Guest

    Re: Nesting excel greater than 7 arguments

    Mayn, you guys are GOOD. I've created another problem now =) I'll post it
    under a separate heading. THANK YOU!!!

    "Ken Wright" wrote:

    > On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    > This assumes that you have rates in cells B17:B28. If not then you should
    > be able to work out what's going on here. The 0 should be against your
    > lowest rate:-
    >
    > Now replace your formula with the following:-
    >
    > =Q3*VLOOKUP(F3,$A$17:$B$28,2)
    >
    > Take a look at the help on the VLOOKUP function
    >
    > --
    > Regards
    > Ken....................... Microsoft MVP - Excel
    > Sys Spec - Win XP Pro / XL 97/00/02/03
    >
    > ------------------------------Â*------------------------------Â*----------------
    > It's easier to beg forgiveness than ask permission :-)
    > ------------------------------Â*------------------------------Â*----------------
    >
    >
    > "Chris Berding" <Chris [email protected]> wrote in message
    > news:[email protected]...
    > > I'm trying to nest greater than 7 arguments, based on a variable rate
    > > structure. For example, there are 8 different age catories, and 9
    > > different
    > > rates... so depending on the person's age, i need to use a different rate.
    > > I
    > > have successfully nested the maximum, but it leaves me with three age
    > > groups
    > > that I can't calculate automatically.
    > > Here is my formula so far:
    > > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > > calc."))))))))
    > >
    > > It doesnt work or anyone under 40 so i have to manually calculate any
    > > clients who's age is less than 40.
    > >
    > > Grateful if you have a way around Microsoft's maximum!

    >
    >
    >


  43. #43
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    For crying out loud - Going to bed now!!!!!!!!!

    =Q3*OFFSET(VolLifeRates!$B$20,MAX(0,INT(F3/5)-6),)

    Regards
    Ken.....................



  44. #44
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    On your sheet VolLifeRates, in cells A17:A28 put 0,20,25,30,35.......70.
    This assumes that you have rates in cells B17:B28. If not then you should
    be able to work out what's going on here. The 0 should be against your
    lowest rate:-

    Now replace your formula with the following:-

    =Q3*VLOOKUP(F3,$A$17:$B$28,2)

    Take a look at the help on the VLOOKUP function

    --
    Regards
    Ken....................... Microsoft MVP - Excel
    Sys Spec - Win XP Pro / XL 97/00/02/03

    ------------------------------*------------------------------*----------------
    It's easier to beg forgiveness than ask permission :-)
    ------------------------------*------------------------------*----------------


    "Chris Berding" <Chris [email protected]> wrote in message
    news:[email protected]...
    > I'm trying to nest greater than 7 arguments, based on a variable rate
    > structure. For example, there are 8 different age catories, and 9
    > different
    > rates... so depending on the person's age, i need to use a different rate.
    > I
    > have successfully nested the maximum, but it leaves me with three age
    > groups
    > that I can't calculate automatically.
    > Here is my formula so far:
    > =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual
    > calc."))))))))
    >
    > It doesnt work or anyone under 40 so i have to manually calculate any
    > clients who's age is less than 40.
    >
    > Grateful if you have a way around Microsoft's maximum!




  45. #45
    Ken Wright
    Guest

    Re: Nesting excel greater than 7 arguments

    Grrrrrrrr, correction

    =Q3*OFFSET(VolLifeRates!$B$20,MIN(0,INT(F3/5)-6),)

    Regards
    Ken.....................


    "Ken Wright" <[email protected]> wrote in message
    news:[email protected]...
    > Another possible option involving no additional data:-
    >
    > Assuming your first rate starts in B20
    >
    > =Q3*OFFSET(VolLifeRates!$B$20,F3/5-6,)
    >
    > Regards
    > Ken...............
    >
    >




  46. #46
    Chris Berding
    Guest

    Nesting excel greater than 7 arguments

    I'm trying to nest greater than 7 arguments, based on a variable rate
    structure. For example, there are 8 different age catories, and 9 different
    rates... so depending on the person's age, i need to use a different rate. I
    have successfully nested the maximum, but it leaves me with three age groups
    that I can't calculate automatically.
    Here is my formula so far:
    =IF(F3>=70,Q3*VolLifeRates!$B$28,IF(F3>=65,Q3*VolLifeRates!$B$27,IF(F3>=60,Q3*VolLifeRates!$B$26,IF(F3>=55,Q3*VolLifeRates!$B$25,IF(F3>=50,Q3*VolLifeRates!$B$24,IF(F3>=45,Q3*VolLifeRates!$B$23,IF(F3>=40,Q3*VolLifeRates!$B$22,IF(F3>=40,Q3*VolLifeRates!$B$21,"manual calc."))))))))

    It doesnt work or anyone under 40 so i have to manually calculate any
    clients who's age is less than 40.

    Grateful if you have a way around Microsoft's maximum!

+ 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