+ Reply to Thread
Results 1 to 43 of 43

Vlookup, What is correct formula for problem below?

  1. #1
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    Looks like you need to get the 85 choices from the third sheet back into the
    second sheet
    next to the numbers in A2 to A86
    you could then enter a vlookup function in say D1
    such as =VLOOKUP(Sheet1!A23,A2:B86,2,FALSE)

    i.e in english
    this will look for the value in sheet1 A23 and find the same value in the
    table on sheet 2 A2:B86
    then it will pick the numer in the second column of that table.

    --
    Greetings from New Zealand
    Bill K
    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > The workbook contains three sheets. The formula needs to be in the 2nd
    > sheet
    > and it needs to pull a factor from a possible 85 choices located in
    > (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > The
    > correct one to use is determined by the term of the loan which I need to
    > pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column.
    > What
    > would be the correct formula to use? I'm stumped. Thanks.




  2. #2
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    Thank you. I had to join both columns together to make them work. Here is to
    formula:=VLOOKUP('F&I Menu '!BA6,Tables!A2:B85,2,FALSE)



    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  3. #3
    Dave Peterson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    If Term is only one column, then excel is telling you that it's having trouble
    returning that second column of that single column range.

    I'd create a new name (for both columns) and call it TermRate and use:
    =VLOOKUP('F&I Menu '!BA6,TermRate,2,FALSE)

    or maybe:
    =index(rate,match('f&i menu '!ba6,term,0))

    But I wouldn't use Rate as a name, either. Excel has a function called
    =rate(). (And it would confuse the heck out of me!)

    Bill R wrote:
    >
    > I input the following formula and it returns a #Ref error. (I named the
    > columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    > pulling correctly but the rest of it does not seem to work. What can I do?
    > Thanks.
    >
    > =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)
    >
    > "Ken Hudson" wrote:
    >
    > > And, if you are going to copy/drag your formula down from E12, you'll need to
    > > "anchor" your Sheet3 range reference in your formula:
    > >
    > > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    > >
    > > --
    > > Ken Hudson
    > >
    > >
    > > "Bill Kuunders" wrote:
    > >
    > > > So, in E12 on sheet2 enter
    > > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > > Regards
    > > > Bill K
    > > >
    > > > "Bill R" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > > on
    > > > > that sheet and match it with the number in the 1st column to pull the
    > > > > factor
    > > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > > premium. Thanks.
    > > > >
    > > > > Term Rate
    > > > > 1 0.29000
    > > > > 2 0.57000
    > > > > 3 0.86000
    > > > > 4 1.03000
    > > > > 5 1.20000
    > > > > 6 1.37000
    > > > > 7 1.52000
    > > > > 8 1.67000
    > > > > 9 1.82000
    > > > > 10 1.95000
    > > > > 11 2.07000
    > > > > 12 2.20000
    > > > > 13 2.27000
    > > > > 14 2.33000
    > > > >
    > > > > "Bill R" wrote:
    > > > >
    > > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > > >> sheet
    > > > >> and it needs to pull a factor from a possible 85 choices located in
    > > > >> (B2:B86)
    > > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > > >> The
    > > > >> correct one to use is determined by the term of the loan which I need to
    > > > >> pull
    > > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > > >> What
    > > > >> would be the correct formula to use? I'm stumped. Thanks.
    > > >
    > > >
    > > >


    --

    Dave Peterson

  4. #4
    Bill R
    Guest

    Re: Vlookup, What is correct formula for problem below?

    I input the following formula and it returns a #Ref error. (I named the
    columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    pulling correctly but the rest of it does not seem to work. What can I do?
    Thanks.

    =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)

    "Ken Hudson" wrote:

    > And, if you are going to copy/drag your formula down from E12, you'll need to
    > "anchor" your Sheet3 range reference in your formula:
    >
    > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    >
    > --
    > Ken Hudson
    >
    >
    > "Bill Kuunders" wrote:
    >
    > > So, in E12 on sheet2 enter
    > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > Regards
    > > Bill K
    > >
    > > "Bill R" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > on
    > > > that sheet and match it with the number in the 1st column to pull the
    > > > factor
    > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > premium. Thanks.
    > > >
    > > > Term Rate
    > > > 1 0.29000
    > > > 2 0.57000
    > > > 3 0.86000
    > > > 4 1.03000
    > > > 5 1.20000
    > > > 6 1.37000
    > > > 7 1.52000
    > > > 8 1.67000
    > > > 9 1.82000
    > > > 10 1.95000
    > > > 11 2.07000
    > > > 12 2.20000
    > > > 13 2.27000
    > > > 14 2.33000
    > > >
    > > > "Bill R" wrote:
    > > >
    > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > >> sheet
    > > >> and it needs to pull a factor from a possible 85 choices located in
    > > >> (B2:B86)
    > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > >> The
    > > >> correct one to use is determined by the term of the loan which I need to
    > > >> pull
    > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > >> What
    > > >> would be the correct formula to use? I'm stumped. Thanks.

    > >
    > >
    > >


  5. #5
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    This is the first two columns on sheet #3. I am trying to Pull the finance
    term from a payment calculator in the 1st sheet which is located at (BA6) on
    that sheet and match it with the number in the 1st column to pull the factor
    in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    premium. Thanks.

    Term Rate
    1 0.29000
    2 0.57000
    3 0.86000
    4 1.03000
    5 1.20000
    6 1.37000
    7 1.52000
    8 1.67000
    9 1.82000
    10 1.95000
    11 2.07000
    12 2.20000
    13 2.27000
    14 2.33000

    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  6. #6
    Ken Hudson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    And, if you are going to copy/drag your formula down from E12, you'll need to
    "anchor" your Sheet3 range reference in your formula:

    =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)

    --
    Ken Hudson


    "Bill Kuunders" wrote:

    > So, in E12 on sheet2 enter
    > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > Regards
    > Bill K
    >
    > "Bill R" <[email protected]> wrote in message
    > news:[email protected]...
    > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > on
    > > that sheet and match it with the number in the 1st column to pull the
    > > factor
    > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > premium. Thanks.
    > >
    > > Term Rate
    > > 1 0.29000
    > > 2 0.57000
    > > 3 0.86000
    > > 4 1.03000
    > > 5 1.20000
    > > 6 1.37000
    > > 7 1.52000
    > > 8 1.67000
    > > 9 1.82000
    > > 10 1.95000
    > > 11 2.07000
    > > 12 2.20000
    > > 13 2.27000
    > > 14 2.33000
    > >
    > > "Bill R" wrote:
    > >
    > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > >> sheet
    > >> and it needs to pull a factor from a possible 85 choices located in
    > >> (B2:B86)
    > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > >> The
    > >> correct one to use is determined by the term of the loan which I need to
    > >> pull
    > >> from the 1st sheet in the workbook. The term of the loan will match the
    > >> number in the 1st column next to the correct factor in the 2nd column.
    > >> What
    > >> would be the correct formula to use? I'm stumped. Thanks.

    >
    >
    >


  7. #7
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    So, in E12 on sheet2 enter
    =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    Regards
    Bill K

    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > This is the first two columns on sheet #3. I am trying to Pull the finance
    > term from a payment calculator in the 1st sheet which is located at (BA6)
    > on
    > that sheet and match it with the number in the 1st column to pull the
    > factor
    > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > premium. Thanks.
    >
    > Term Rate
    > 1 0.29000
    > 2 0.57000
    > 3 0.86000
    > 4 1.03000
    > 5 1.20000
    > 6 1.37000
    > 7 1.52000
    > 8 1.67000
    > 9 1.82000
    > 10 1.95000
    > 11 2.07000
    > 12 2.20000
    > 13 2.27000
    > 14 2.33000
    >
    > "Bill R" wrote:
    >
    >> The workbook contains three sheets. The formula needs to be in the 2nd
    >> sheet
    >> and it needs to pull a factor from a possible 85 choices located in
    >> (B2:B86)
    >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    >> The
    >> correct one to use is determined by the term of the loan which I need to
    >> pull
    >> from the 1st sheet in the workbook. The term of the loan will match the
    >> number in the 1st column next to the correct factor in the 2nd column.
    >> What
    >> would be the correct formula to use? I'm stumped. Thanks.




  8. #8
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    Thank you. I had to join both columns together to make them work. Here is to
    formula:=VLOOKUP('F&I Menu '!BA6,Tables!A2:B85,2,FALSE)



    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  9. #9
    Dave Peterson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    If Term is only one column, then excel is telling you that it's having trouble
    returning that second column of that single column range.

    I'd create a new name (for both columns) and call it TermRate and use:
    =VLOOKUP('F&I Menu '!BA6,TermRate,2,FALSE)

    or maybe:
    =index(rate,match('f&i menu '!ba6,term,0))

    But I wouldn't use Rate as a name, either. Excel has a function called
    =rate(). (And it would confuse the heck out of me!)

    Bill R wrote:
    >
    > I input the following formula and it returns a #Ref error. (I named the
    > columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    > pulling correctly but the rest of it does not seem to work. What can I do?
    > Thanks.
    >
    > =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)
    >
    > "Ken Hudson" wrote:
    >
    > > And, if you are going to copy/drag your formula down from E12, you'll need to
    > > "anchor" your Sheet3 range reference in your formula:
    > >
    > > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    > >
    > > --
    > > Ken Hudson
    > >
    > >
    > > "Bill Kuunders" wrote:
    > >
    > > > So, in E12 on sheet2 enter
    > > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > > Regards
    > > > Bill K
    > > >
    > > > "Bill R" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > > on
    > > > > that sheet and match it with the number in the 1st column to pull the
    > > > > factor
    > > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > > premium. Thanks.
    > > > >
    > > > > Term Rate
    > > > > 1 0.29000
    > > > > 2 0.57000
    > > > > 3 0.86000
    > > > > 4 1.03000
    > > > > 5 1.20000
    > > > > 6 1.37000
    > > > > 7 1.52000
    > > > > 8 1.67000
    > > > > 9 1.82000
    > > > > 10 1.95000
    > > > > 11 2.07000
    > > > > 12 2.20000
    > > > > 13 2.27000
    > > > > 14 2.33000
    > > > >
    > > > > "Bill R" wrote:
    > > > >
    > > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > > >> sheet
    > > > >> and it needs to pull a factor from a possible 85 choices located in
    > > > >> (B2:B86)
    > > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > > >> The
    > > > >> correct one to use is determined by the term of the loan which I need to
    > > > >> pull
    > > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > > >> What
    > > > >> would be the correct formula to use? I'm stumped. Thanks.
    > > >
    > > >
    > > >


    --

    Dave Peterson

  10. #10
    Bill R
    Guest

    Re: Vlookup, What is correct formula for problem below?

    I input the following formula and it returns a #Ref error. (I named the
    columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    pulling correctly but the rest of it does not seem to work. What can I do?
    Thanks.

    =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)

    "Ken Hudson" wrote:

    > And, if you are going to copy/drag your formula down from E12, you'll need to
    > "anchor" your Sheet3 range reference in your formula:
    >
    > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    >
    > --
    > Ken Hudson
    >
    >
    > "Bill Kuunders" wrote:
    >
    > > So, in E12 on sheet2 enter
    > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > Regards
    > > Bill K
    > >
    > > "Bill R" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > on
    > > > that sheet and match it with the number in the 1st column to pull the
    > > > factor
    > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > premium. Thanks.
    > > >
    > > > Term Rate
    > > > 1 0.29000
    > > > 2 0.57000
    > > > 3 0.86000
    > > > 4 1.03000
    > > > 5 1.20000
    > > > 6 1.37000
    > > > 7 1.52000
    > > > 8 1.67000
    > > > 9 1.82000
    > > > 10 1.95000
    > > > 11 2.07000
    > > > 12 2.20000
    > > > 13 2.27000
    > > > 14 2.33000
    > > >
    > > > "Bill R" wrote:
    > > >
    > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > >> sheet
    > > >> and it needs to pull a factor from a possible 85 choices located in
    > > >> (B2:B86)
    > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > >> The
    > > >> correct one to use is determined by the term of the loan which I need to
    > > >> pull
    > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > >> What
    > > >> would be the correct formula to use? I'm stumped. Thanks.

    > >
    > >
    > >


  11. #11
    Ken Hudson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    And, if you are going to copy/drag your formula down from E12, you'll need to
    "anchor" your Sheet3 range reference in your formula:

    =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)

    --
    Ken Hudson


    "Bill Kuunders" wrote:

    > So, in E12 on sheet2 enter
    > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > Regards
    > Bill K
    >
    > "Bill R" <[email protected]> wrote in message
    > news:[email protected]...
    > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > on
    > > that sheet and match it with the number in the 1st column to pull the
    > > factor
    > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > premium. Thanks.
    > >
    > > Term Rate
    > > 1 0.29000
    > > 2 0.57000
    > > 3 0.86000
    > > 4 1.03000
    > > 5 1.20000
    > > 6 1.37000
    > > 7 1.52000
    > > 8 1.67000
    > > 9 1.82000
    > > 10 1.95000
    > > 11 2.07000
    > > 12 2.20000
    > > 13 2.27000
    > > 14 2.33000
    > >
    > > "Bill R" wrote:
    > >
    > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > >> sheet
    > >> and it needs to pull a factor from a possible 85 choices located in
    > >> (B2:B86)
    > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > >> The
    > >> correct one to use is determined by the term of the loan which I need to
    > >> pull
    > >> from the 1st sheet in the workbook. The term of the loan will match the
    > >> number in the 1st column next to the correct factor in the 2nd column.
    > >> What
    > >> would be the correct formula to use? I'm stumped. Thanks.

    >
    >
    >


  12. #12
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    So, in E12 on sheet2 enter
    =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    Regards
    Bill K

    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > This is the first two columns on sheet #3. I am trying to Pull the finance
    > term from a payment calculator in the 1st sheet which is located at (BA6)
    > on
    > that sheet and match it with the number in the 1st column to pull the
    > factor
    > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > premium. Thanks.
    >
    > Term Rate
    > 1 0.29000
    > 2 0.57000
    > 3 0.86000
    > 4 1.03000
    > 5 1.20000
    > 6 1.37000
    > 7 1.52000
    > 8 1.67000
    > 9 1.82000
    > 10 1.95000
    > 11 2.07000
    > 12 2.20000
    > 13 2.27000
    > 14 2.33000
    >
    > "Bill R" wrote:
    >
    >> The workbook contains three sheets. The formula needs to be in the 2nd
    >> sheet
    >> and it needs to pull a factor from a possible 85 choices located in
    >> (B2:B86)
    >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    >> The
    >> correct one to use is determined by the term of the loan which I need to
    >> pull
    >> from the 1st sheet in the workbook. The term of the loan will match the
    >> number in the 1st column next to the correct factor in the 2nd column.
    >> What
    >> would be the correct formula to use? I'm stumped. Thanks.




  13. #13
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    This is the first two columns on sheet #3. I am trying to Pull the finance
    term from a payment calculator in the 1st sheet which is located at (BA6) on
    that sheet and match it with the number in the 1st column to pull the factor
    in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    premium. Thanks.

    Term Rate
    1 0.29000
    2 0.57000
    3 0.86000
    4 1.03000
    5 1.20000
    6 1.37000
    7 1.52000
    8 1.67000
    9 1.82000
    10 1.95000
    11 2.07000
    12 2.20000
    13 2.27000
    14 2.33000

    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  14. #14
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    Looks like you need to get the 85 choices from the third sheet back into the
    second sheet
    next to the numbers in A2 to A86
    you could then enter a vlookup function in say D1
    such as =VLOOKUP(Sheet1!A23,A2:B86,2,FALSE)

    i.e in english
    this will look for the value in sheet1 A23 and find the same value in the
    table on sheet 2 A2:B86
    then it will pick the numer in the second column of that table.

    --
    Greetings from New Zealand
    Bill K
    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > The workbook contains three sheets. The formula needs to be in the 2nd
    > sheet
    > and it needs to pull a factor from a possible 85 choices located in
    > (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > The
    > correct one to use is determined by the term of the loan which I need to
    > pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column.
    > What
    > would be the correct formula to use? I'm stumped. Thanks.




  15. #15
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    Thank you. I had to join both columns together to make them work. Here is to
    formula:=VLOOKUP('F&I Menu '!BA6,Tables!A2:B85,2,FALSE)



    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  16. #16
    Dave Peterson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    If Term is only one column, then excel is telling you that it's having trouble
    returning that second column of that single column range.

    I'd create a new name (for both columns) and call it TermRate and use:
    =VLOOKUP('F&I Menu '!BA6,TermRate,2,FALSE)

    or maybe:
    =index(rate,match('f&i menu '!ba6,term,0))

    But I wouldn't use Rate as a name, either. Excel has a function called
    =rate(). (And it would confuse the heck out of me!)

    Bill R wrote:
    >
    > I input the following formula and it returns a #Ref error. (I named the
    > columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    > pulling correctly but the rest of it does not seem to work. What can I do?
    > Thanks.
    >
    > =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)
    >
    > "Ken Hudson" wrote:
    >
    > > And, if you are going to copy/drag your formula down from E12, you'll need to
    > > "anchor" your Sheet3 range reference in your formula:
    > >
    > > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    > >
    > > --
    > > Ken Hudson
    > >
    > >
    > > "Bill Kuunders" wrote:
    > >
    > > > So, in E12 on sheet2 enter
    > > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > > Regards
    > > > Bill K
    > > >
    > > > "Bill R" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > > on
    > > > > that sheet and match it with the number in the 1st column to pull the
    > > > > factor
    > > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > > premium. Thanks.
    > > > >
    > > > > Term Rate
    > > > > 1 0.29000
    > > > > 2 0.57000
    > > > > 3 0.86000
    > > > > 4 1.03000
    > > > > 5 1.20000
    > > > > 6 1.37000
    > > > > 7 1.52000
    > > > > 8 1.67000
    > > > > 9 1.82000
    > > > > 10 1.95000
    > > > > 11 2.07000
    > > > > 12 2.20000
    > > > > 13 2.27000
    > > > > 14 2.33000
    > > > >
    > > > > "Bill R" wrote:
    > > > >
    > > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > > >> sheet
    > > > >> and it needs to pull a factor from a possible 85 choices located in
    > > > >> (B2:B86)
    > > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > > >> The
    > > > >> correct one to use is determined by the term of the loan which I need to
    > > > >> pull
    > > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > > >> What
    > > > >> would be the correct formula to use? I'm stumped. Thanks.
    > > >
    > > >
    > > >


    --

    Dave Peterson

  17. #17
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    Looks like you need to get the 85 choices from the third sheet back into the
    second sheet
    next to the numbers in A2 to A86
    you could then enter a vlookup function in say D1
    such as =VLOOKUP(Sheet1!A23,A2:B86,2,FALSE)

    i.e in english
    this will look for the value in sheet1 A23 and find the same value in the
    table on sheet 2 A2:B86
    then it will pick the numer in the second column of that table.

    --
    Greetings from New Zealand
    Bill K
    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > The workbook contains three sheets. The formula needs to be in the 2nd
    > sheet
    > and it needs to pull a factor from a possible 85 choices located in
    > (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > The
    > correct one to use is determined by the term of the loan which I need to
    > pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column.
    > What
    > would be the correct formula to use? I'm stumped. Thanks.




  18. #18
    Bill R
    Guest

    Re: Vlookup, What is correct formula for problem below?

    I input the following formula and it returns a #Ref error. (I named the
    columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    pulling correctly but the rest of it does not seem to work. What can I do?
    Thanks.

    =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)

    "Ken Hudson" wrote:

    > And, if you are going to copy/drag your formula down from E12, you'll need to
    > "anchor" your Sheet3 range reference in your formula:
    >
    > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    >
    > --
    > Ken Hudson
    >
    >
    > "Bill Kuunders" wrote:
    >
    > > So, in E12 on sheet2 enter
    > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > Regards
    > > Bill K
    > >
    > > "Bill R" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > on
    > > > that sheet and match it with the number in the 1st column to pull the
    > > > factor
    > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > premium. Thanks.
    > > >
    > > > Term Rate
    > > > 1 0.29000
    > > > 2 0.57000
    > > > 3 0.86000
    > > > 4 1.03000
    > > > 5 1.20000
    > > > 6 1.37000
    > > > 7 1.52000
    > > > 8 1.67000
    > > > 9 1.82000
    > > > 10 1.95000
    > > > 11 2.07000
    > > > 12 2.20000
    > > > 13 2.27000
    > > > 14 2.33000
    > > >
    > > > "Bill R" wrote:
    > > >
    > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > >> sheet
    > > >> and it needs to pull a factor from a possible 85 choices located in
    > > >> (B2:B86)
    > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > >> The
    > > >> correct one to use is determined by the term of the loan which I need to
    > > >> pull
    > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > >> What
    > > >> would be the correct formula to use? I'm stumped. Thanks.

    > >
    > >
    > >


  19. #19
    Ken Hudson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    And, if you are going to copy/drag your formula down from E12, you'll need to
    "anchor" your Sheet3 range reference in your formula:

    =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)

    --
    Ken Hudson


    "Bill Kuunders" wrote:

    > So, in E12 on sheet2 enter
    > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > Regards
    > Bill K
    >
    > "Bill R" <[email protected]> wrote in message
    > news:[email protected]...
    > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > on
    > > that sheet and match it with the number in the 1st column to pull the
    > > factor
    > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > premium. Thanks.
    > >
    > > Term Rate
    > > 1 0.29000
    > > 2 0.57000
    > > 3 0.86000
    > > 4 1.03000
    > > 5 1.20000
    > > 6 1.37000
    > > 7 1.52000
    > > 8 1.67000
    > > 9 1.82000
    > > 10 1.95000
    > > 11 2.07000
    > > 12 2.20000
    > > 13 2.27000
    > > 14 2.33000
    > >
    > > "Bill R" wrote:
    > >
    > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > >> sheet
    > >> and it needs to pull a factor from a possible 85 choices located in
    > >> (B2:B86)
    > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > >> The
    > >> correct one to use is determined by the term of the loan which I need to
    > >> pull
    > >> from the 1st sheet in the workbook. The term of the loan will match the
    > >> number in the 1st column next to the correct factor in the 2nd column.
    > >> What
    > >> would be the correct formula to use? I'm stumped. Thanks.

    >
    >
    >


  20. #20
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    So, in E12 on sheet2 enter
    =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    Regards
    Bill K

    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > This is the first two columns on sheet #3. I am trying to Pull the finance
    > term from a payment calculator in the 1st sheet which is located at (BA6)
    > on
    > that sheet and match it with the number in the 1st column to pull the
    > factor
    > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > premium. Thanks.
    >
    > Term Rate
    > 1 0.29000
    > 2 0.57000
    > 3 0.86000
    > 4 1.03000
    > 5 1.20000
    > 6 1.37000
    > 7 1.52000
    > 8 1.67000
    > 9 1.82000
    > 10 1.95000
    > 11 2.07000
    > 12 2.20000
    > 13 2.27000
    > 14 2.33000
    >
    > "Bill R" wrote:
    >
    >> The workbook contains three sheets. The formula needs to be in the 2nd
    >> sheet
    >> and it needs to pull a factor from a possible 85 choices located in
    >> (B2:B86)
    >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    >> The
    >> correct one to use is determined by the term of the loan which I need to
    >> pull
    >> from the 1st sheet in the workbook. The term of the loan will match the
    >> number in the 1st column next to the correct factor in the 2nd column.
    >> What
    >> would be the correct formula to use? I'm stumped. Thanks.




  21. #21
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    This is the first two columns on sheet #3. I am trying to Pull the finance
    term from a payment calculator in the 1st sheet which is located at (BA6) on
    that sheet and match it with the number in the 1st column to pull the factor
    in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    premium. Thanks.

    Term Rate
    1 0.29000
    2 0.57000
    3 0.86000
    4 1.03000
    5 1.20000
    6 1.37000
    7 1.52000
    8 1.67000
    9 1.82000
    10 1.95000
    11 2.07000
    12 2.20000
    13 2.27000
    14 2.33000

    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  22. #22
    Ken Hudson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    And, if you are going to copy/drag your formula down from E12, you'll need to
    "anchor" your Sheet3 range reference in your formula:

    =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)

    --
    Ken Hudson


    "Bill Kuunders" wrote:

    > So, in E12 on sheet2 enter
    > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > Regards
    > Bill K
    >
    > "Bill R" <[email protected]> wrote in message
    > news:[email protected]...
    > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > on
    > > that sheet and match it with the number in the 1st column to pull the
    > > factor
    > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > premium. Thanks.
    > >
    > > Term Rate
    > > 1 0.29000
    > > 2 0.57000
    > > 3 0.86000
    > > 4 1.03000
    > > 5 1.20000
    > > 6 1.37000
    > > 7 1.52000
    > > 8 1.67000
    > > 9 1.82000
    > > 10 1.95000
    > > 11 2.07000
    > > 12 2.20000
    > > 13 2.27000
    > > 14 2.33000
    > >
    > > "Bill R" wrote:
    > >
    > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > >> sheet
    > >> and it needs to pull a factor from a possible 85 choices located in
    > >> (B2:B86)
    > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > >> The
    > >> correct one to use is determined by the term of the loan which I need to
    > >> pull
    > >> from the 1st sheet in the workbook. The term of the loan will match the
    > >> number in the 1st column next to the correct factor in the 2nd column.
    > >> What
    > >> would be the correct formula to use? I'm stumped. Thanks.

    >
    >
    >


  23. #23
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    Looks like you need to get the 85 choices from the third sheet back into the
    second sheet
    next to the numbers in A2 to A86
    you could then enter a vlookup function in say D1
    such as =VLOOKUP(Sheet1!A23,A2:B86,2,FALSE)

    i.e in english
    this will look for the value in sheet1 A23 and find the same value in the
    table on sheet 2 A2:B86
    then it will pick the numer in the second column of that table.

    --
    Greetings from New Zealand
    Bill K
    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > The workbook contains three sheets. The formula needs to be in the 2nd
    > sheet
    > and it needs to pull a factor from a possible 85 choices located in
    > (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > The
    > correct one to use is determined by the term of the loan which I need to
    > pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column.
    > What
    > would be the correct formula to use? I'm stumped. Thanks.




  24. #24
    Dave Peterson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    If Term is only one column, then excel is telling you that it's having trouble
    returning that second column of that single column range.

    I'd create a new name (for both columns) and call it TermRate and use:
    =VLOOKUP('F&I Menu '!BA6,TermRate,2,FALSE)

    or maybe:
    =index(rate,match('f&i menu '!ba6,term,0))

    But I wouldn't use Rate as a name, either. Excel has a function called
    =rate(). (And it would confuse the heck out of me!)

    Bill R wrote:
    >
    > I input the following formula and it returns a #Ref error. (I named the
    > columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    > pulling correctly but the rest of it does not seem to work. What can I do?
    > Thanks.
    >
    > =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)
    >
    > "Ken Hudson" wrote:
    >
    > > And, if you are going to copy/drag your formula down from E12, you'll need to
    > > "anchor" your Sheet3 range reference in your formula:
    > >
    > > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    > >
    > > --
    > > Ken Hudson
    > >
    > >
    > > "Bill Kuunders" wrote:
    > >
    > > > So, in E12 on sheet2 enter
    > > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > > Regards
    > > > Bill K
    > > >
    > > > "Bill R" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > > on
    > > > > that sheet and match it with the number in the 1st column to pull the
    > > > > factor
    > > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > > premium. Thanks.
    > > > >
    > > > > Term Rate
    > > > > 1 0.29000
    > > > > 2 0.57000
    > > > > 3 0.86000
    > > > > 4 1.03000
    > > > > 5 1.20000
    > > > > 6 1.37000
    > > > > 7 1.52000
    > > > > 8 1.67000
    > > > > 9 1.82000
    > > > > 10 1.95000
    > > > > 11 2.07000
    > > > > 12 2.20000
    > > > > 13 2.27000
    > > > > 14 2.33000
    > > > >
    > > > > "Bill R" wrote:
    > > > >
    > > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > > >> sheet
    > > > >> and it needs to pull a factor from a possible 85 choices located in
    > > > >> (B2:B86)
    > > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > > >> The
    > > > >> correct one to use is determined by the term of the loan which I need to
    > > > >> pull
    > > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > > >> What
    > > > >> would be the correct formula to use? I'm stumped. Thanks.
    > > >
    > > >
    > > >


    --

    Dave Peterson

  25. #25
    Bill R
    Guest

    Re: Vlookup, What is correct formula for problem below?

    I input the following formula and it returns a #Ref error. (I named the
    columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    pulling correctly but the rest of it does not seem to work. What can I do?
    Thanks.

    =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)

    "Ken Hudson" wrote:

    > And, if you are going to copy/drag your formula down from E12, you'll need to
    > "anchor" your Sheet3 range reference in your formula:
    >
    > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    >
    > --
    > Ken Hudson
    >
    >
    > "Bill Kuunders" wrote:
    >
    > > So, in E12 on sheet2 enter
    > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > Regards
    > > Bill K
    > >
    > > "Bill R" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > on
    > > > that sheet and match it with the number in the 1st column to pull the
    > > > factor
    > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > premium. Thanks.
    > > >
    > > > Term Rate
    > > > 1 0.29000
    > > > 2 0.57000
    > > > 3 0.86000
    > > > 4 1.03000
    > > > 5 1.20000
    > > > 6 1.37000
    > > > 7 1.52000
    > > > 8 1.67000
    > > > 9 1.82000
    > > > 10 1.95000
    > > > 11 2.07000
    > > > 12 2.20000
    > > > 13 2.27000
    > > > 14 2.33000
    > > >
    > > > "Bill R" wrote:
    > > >
    > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > >> sheet
    > > >> and it needs to pull a factor from a possible 85 choices located in
    > > >> (B2:B86)
    > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > >> The
    > > >> correct one to use is determined by the term of the loan which I need to
    > > >> pull
    > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > >> What
    > > >> would be the correct formula to use? I'm stumped. Thanks.

    > >
    > >
    > >


  26. #26
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    So, in E12 on sheet2 enter
    =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    Regards
    Bill K

    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > This is the first two columns on sheet #3. I am trying to Pull the finance
    > term from a payment calculator in the 1st sheet which is located at (BA6)
    > on
    > that sheet and match it with the number in the 1st column to pull the
    > factor
    > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > premium. Thanks.
    >
    > Term Rate
    > 1 0.29000
    > 2 0.57000
    > 3 0.86000
    > 4 1.03000
    > 5 1.20000
    > 6 1.37000
    > 7 1.52000
    > 8 1.67000
    > 9 1.82000
    > 10 1.95000
    > 11 2.07000
    > 12 2.20000
    > 13 2.27000
    > 14 2.33000
    >
    > "Bill R" wrote:
    >
    >> The workbook contains three sheets. The formula needs to be in the 2nd
    >> sheet
    >> and it needs to pull a factor from a possible 85 choices located in
    >> (B2:B86)
    >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    >> The
    >> correct one to use is determined by the term of the loan which I need to
    >> pull
    >> from the 1st sheet in the workbook. The term of the loan will match the
    >> number in the 1st column next to the correct factor in the 2nd column.
    >> What
    >> would be the correct formula to use? I'm stumped. Thanks.




  27. #27
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    Thank you. I had to join both columns together to make them work. Here is to
    formula:=VLOOKUP('F&I Menu '!BA6,Tables!A2:B85,2,FALSE)



    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  28. #28
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    This is the first two columns on sheet #3. I am trying to Pull the finance
    term from a payment calculator in the 1st sheet which is located at (BA6) on
    that sheet and match it with the number in the 1st column to pull the factor
    in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    premium. Thanks.

    Term Rate
    1 0.29000
    2 0.57000
    3 0.86000
    4 1.03000
    5 1.20000
    6 1.37000
    7 1.52000
    8 1.67000
    9 1.82000
    10 1.95000
    11 2.07000
    12 2.20000
    13 2.27000
    14 2.33000

    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  29. #29
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    Looks like you need to get the 85 choices from the third sheet back into the
    second sheet
    next to the numbers in A2 to A86
    you could then enter a vlookup function in say D1
    such as =VLOOKUP(Sheet1!A23,A2:B86,2,FALSE)

    i.e in english
    this will look for the value in sheet1 A23 and find the same value in the
    table on sheet 2 A2:B86
    then it will pick the numer in the second column of that table.

    --
    Greetings from New Zealand
    Bill K
    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > The workbook contains three sheets. The formula needs to be in the 2nd
    > sheet
    > and it needs to pull a factor from a possible 85 choices located in
    > (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > The
    > correct one to use is determined by the term of the loan which I need to
    > pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column.
    > What
    > would be the correct formula to use? I'm stumped. Thanks.




  30. #30
    Bill R
    Guest

    Re: Vlookup, What is correct formula for problem below?

    I input the following formula and it returns a #Ref error. (I named the
    columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    pulling correctly but the rest of it does not seem to work. What can I do?
    Thanks.

    =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)

    "Ken Hudson" wrote:

    > And, if you are going to copy/drag your formula down from E12, you'll need to
    > "anchor" your Sheet3 range reference in your formula:
    >
    > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    >
    > --
    > Ken Hudson
    >
    >
    > "Bill Kuunders" wrote:
    >
    > > So, in E12 on sheet2 enter
    > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > Regards
    > > Bill K
    > >
    > > "Bill R" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > on
    > > > that sheet and match it with the number in the 1st column to pull the
    > > > factor
    > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > premium. Thanks.
    > > >
    > > > Term Rate
    > > > 1 0.29000
    > > > 2 0.57000
    > > > 3 0.86000
    > > > 4 1.03000
    > > > 5 1.20000
    > > > 6 1.37000
    > > > 7 1.52000
    > > > 8 1.67000
    > > > 9 1.82000
    > > > 10 1.95000
    > > > 11 2.07000
    > > > 12 2.20000
    > > > 13 2.27000
    > > > 14 2.33000
    > > >
    > > > "Bill R" wrote:
    > > >
    > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > >> sheet
    > > >> and it needs to pull a factor from a possible 85 choices located in
    > > >> (B2:B86)
    > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > >> The
    > > >> correct one to use is determined by the term of the loan which I need to
    > > >> pull
    > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > >> What
    > > >> would be the correct formula to use? I'm stumped. Thanks.

    > >
    > >
    > >


  31. #31
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    This is the first two columns on sheet #3. I am trying to Pull the finance
    term from a payment calculator in the 1st sheet which is located at (BA6) on
    that sheet and match it with the number in the 1st column to pull the factor
    in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    premium. Thanks.

    Term Rate
    1 0.29000
    2 0.57000
    3 0.86000
    4 1.03000
    5 1.20000
    6 1.37000
    7 1.52000
    8 1.67000
    9 1.82000
    10 1.95000
    11 2.07000
    12 2.20000
    13 2.27000
    14 2.33000

    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  32. #32
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    Thank you. I had to join both columns together to make them work. Here is to
    formula:=VLOOKUP('F&I Menu '!BA6,Tables!A2:B85,2,FALSE)



    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  33. #33
    Dave Peterson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    If Term is only one column, then excel is telling you that it's having trouble
    returning that second column of that single column range.

    I'd create a new name (for both columns) and call it TermRate and use:
    =VLOOKUP('F&I Menu '!BA6,TermRate,2,FALSE)

    or maybe:
    =index(rate,match('f&i menu '!ba6,term,0))

    But I wouldn't use Rate as a name, either. Excel has a function called
    =rate(). (And it would confuse the heck out of me!)

    Bill R wrote:
    >
    > I input the following formula and it returns a #Ref error. (I named the
    > columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    > pulling correctly but the rest of it does not seem to work. What can I do?
    > Thanks.
    >
    > =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)
    >
    > "Ken Hudson" wrote:
    >
    > > And, if you are going to copy/drag your formula down from E12, you'll need to
    > > "anchor" your Sheet3 range reference in your formula:
    > >
    > > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    > >
    > > --
    > > Ken Hudson
    > >
    > >
    > > "Bill Kuunders" wrote:
    > >
    > > > So, in E12 on sheet2 enter
    > > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > > Regards
    > > > Bill K
    > > >
    > > > "Bill R" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > > on
    > > > > that sheet and match it with the number in the 1st column to pull the
    > > > > factor
    > > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > > premium. Thanks.
    > > > >
    > > > > Term Rate
    > > > > 1 0.29000
    > > > > 2 0.57000
    > > > > 3 0.86000
    > > > > 4 1.03000
    > > > > 5 1.20000
    > > > > 6 1.37000
    > > > > 7 1.52000
    > > > > 8 1.67000
    > > > > 9 1.82000
    > > > > 10 1.95000
    > > > > 11 2.07000
    > > > > 12 2.20000
    > > > > 13 2.27000
    > > > > 14 2.33000
    > > > >
    > > > > "Bill R" wrote:
    > > > >
    > > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > > >> sheet
    > > > >> and it needs to pull a factor from a possible 85 choices located in
    > > > >> (B2:B86)
    > > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > > >> The
    > > > >> correct one to use is determined by the term of the loan which I need to
    > > > >> pull
    > > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > > >> What
    > > > >> would be the correct formula to use? I'm stumped. Thanks.
    > > >
    > > >
    > > >


    --

    Dave Peterson

  34. #34
    Ken Hudson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    And, if you are going to copy/drag your formula down from E12, you'll need to
    "anchor" your Sheet3 range reference in your formula:

    =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)

    --
    Ken Hudson


    "Bill Kuunders" wrote:

    > So, in E12 on sheet2 enter
    > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > Regards
    > Bill K
    >
    > "Bill R" <[email protected]> wrote in message
    > news:[email protected]...
    > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > on
    > > that sheet and match it with the number in the 1st column to pull the
    > > factor
    > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > premium. Thanks.
    > >
    > > Term Rate
    > > 1 0.29000
    > > 2 0.57000
    > > 3 0.86000
    > > 4 1.03000
    > > 5 1.20000
    > > 6 1.37000
    > > 7 1.52000
    > > 8 1.67000
    > > 9 1.82000
    > > 10 1.95000
    > > 11 2.07000
    > > 12 2.20000
    > > 13 2.27000
    > > 14 2.33000
    > >
    > > "Bill R" wrote:
    > >
    > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > >> sheet
    > >> and it needs to pull a factor from a possible 85 choices located in
    > >> (B2:B86)
    > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > >> The
    > >> correct one to use is determined by the term of the loan which I need to
    > >> pull
    > >> from the 1st sheet in the workbook. The term of the loan will match the
    > >> number in the 1st column next to the correct factor in the 2nd column.
    > >> What
    > >> would be the correct formula to use? I'm stumped. Thanks.

    >
    >
    >


  35. #35
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    So, in E12 on sheet2 enter
    =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    Regards
    Bill K

    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > This is the first two columns on sheet #3. I am trying to Pull the finance
    > term from a payment calculator in the 1st sheet which is located at (BA6)
    > on
    > that sheet and match it with the number in the 1st column to pull the
    > factor
    > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > premium. Thanks.
    >
    > Term Rate
    > 1 0.29000
    > 2 0.57000
    > 3 0.86000
    > 4 1.03000
    > 5 1.20000
    > 6 1.37000
    > 7 1.52000
    > 8 1.67000
    > 9 1.82000
    > 10 1.95000
    > 11 2.07000
    > 12 2.20000
    > 13 2.27000
    > 14 2.33000
    >
    > "Bill R" wrote:
    >
    >> The workbook contains three sheets. The formula needs to be in the 2nd
    >> sheet
    >> and it needs to pull a factor from a possible 85 choices located in
    >> (B2:B86)
    >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    >> The
    >> correct one to use is determined by the term of the loan which I need to
    >> pull
    >> from the 1st sheet in the workbook. The term of the loan will match the
    >> number in the 1st column next to the correct factor in the 2nd column.
    >> What
    >> would be the correct formula to use? I'm stumped. Thanks.




  36. #36
    Bill R
    Guest

    Vlookup, What is correct formula for problem below?

    The workbook contains three sheets. The formula needs to be in the 2nd sheet
    and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    correct one to use is determined by the term of the loan which I need to pull
    from the 1st sheet in the workbook. The term of the loan will match the
    number in the 1st column next to the correct factor in the 2nd column. What
    would be the correct formula to use? I'm stumped. Thanks.

  37. #37
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    Thank you. I had to join both columns together to make them work. Here is to
    formula:=VLOOKUP('F&I Menu '!BA6,Tables!A2:B85,2,FALSE)



    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  38. #38
    Dave Peterson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    If Term is only one column, then excel is telling you that it's having trouble
    returning that second column of that single column range.

    I'd create a new name (for both columns) and call it TermRate and use:
    =VLOOKUP('F&I Menu '!BA6,TermRate,2,FALSE)

    or maybe:
    =index(rate,match('f&i menu '!ba6,term,0))

    But I wouldn't use Rate as a name, either. Excel has a function called
    =rate(). (And it would confuse the heck out of me!)

    Bill R wrote:
    >
    > I input the following formula and it returns a #Ref error. (I named the
    > columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    > pulling correctly but the rest of it does not seem to work. What can I do?
    > Thanks.
    >
    > =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)
    >
    > "Ken Hudson" wrote:
    >
    > > And, if you are going to copy/drag your formula down from E12, you'll need to
    > > "anchor" your Sheet3 range reference in your formula:
    > >
    > > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    > >
    > > --
    > > Ken Hudson
    > >
    > >
    > > "Bill Kuunders" wrote:
    > >
    > > > So, in E12 on sheet2 enter
    > > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > > Regards
    > > > Bill K
    > > >
    > > > "Bill R" <[email protected]> wrote in message
    > > > news:[email protected]...
    > > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > > on
    > > > > that sheet and match it with the number in the 1st column to pull the
    > > > > factor
    > > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > > premium. Thanks.
    > > > >
    > > > > Term Rate
    > > > > 1 0.29000
    > > > > 2 0.57000
    > > > > 3 0.86000
    > > > > 4 1.03000
    > > > > 5 1.20000
    > > > > 6 1.37000
    > > > > 7 1.52000
    > > > > 8 1.67000
    > > > > 9 1.82000
    > > > > 10 1.95000
    > > > > 11 2.07000
    > > > > 12 2.20000
    > > > > 13 2.27000
    > > > > 14 2.33000
    > > > >
    > > > > "Bill R" wrote:
    > > > >
    > > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > > >> sheet
    > > > >> and it needs to pull a factor from a possible 85 choices located in
    > > > >> (B2:B86)
    > > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > > >> The
    > > > >> correct one to use is determined by the term of the loan which I need to
    > > > >> pull
    > > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > > >> What
    > > > >> would be the correct formula to use? I'm stumped. Thanks.
    > > >
    > > >
    > > >


    --

    Dave Peterson

  39. #39
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    Looks like you need to get the 85 choices from the third sheet back into the
    second sheet
    next to the numbers in A2 to A86
    you could then enter a vlookup function in say D1
    such as =VLOOKUP(Sheet1!A23,A2:B86,2,FALSE)

    i.e in english
    this will look for the value in sheet1 A23 and find the same value in the
    table on sheet 2 A2:B86
    then it will pick the numer in the second column of that table.

    --
    Greetings from New Zealand
    Bill K
    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > The workbook contains three sheets. The formula needs to be in the 2nd
    > sheet
    > and it needs to pull a factor from a possible 85 choices located in
    > (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > The
    > correct one to use is determined by the term of the loan which I need to
    > pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column.
    > What
    > would be the correct formula to use? I'm stumped. Thanks.




  40. #40
    Bill R
    Guest

    Re: Vlookup, What is correct formula for problem below?

    I input the following formula and it returns a #Ref error. (I named the
    columns: Column is named"Term" and Column 2 is named "Rate".) The term is
    pulling correctly but the rest of it does not seem to work. What can I do?
    Thanks.

    =VLOOKUP('F&I Menu '!BA6,Term,2,FALSE)

    "Ken Hudson" wrote:

    > And, if you are going to copy/drag your formula down from E12, you'll need to
    > "anchor" your Sheet3 range reference in your formula:
    >
    > =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)
    >
    > --
    > Ken Hudson
    >
    >
    > "Bill Kuunders" wrote:
    >
    > > So, in E12 on sheet2 enter
    > > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > > Regards
    > > Bill K
    > >
    > > "Bill R" <[email protected]> wrote in message
    > > news:[email protected]...
    > > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > > on
    > > > that sheet and match it with the number in the 1st column to pull the
    > > > factor
    > > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > > premium. Thanks.
    > > >
    > > > Term Rate
    > > > 1 0.29000
    > > > 2 0.57000
    > > > 3 0.86000
    > > > 4 1.03000
    > > > 5 1.20000
    > > > 6 1.37000
    > > > 7 1.52000
    > > > 8 1.67000
    > > > 9 1.82000
    > > > 10 1.95000
    > > > 11 2.07000
    > > > 12 2.20000
    > > > 13 2.27000
    > > > 14 2.33000
    > > >
    > > > "Bill R" wrote:
    > > >
    > > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > > >> sheet
    > > >> and it needs to pull a factor from a possible 85 choices located in
    > > >> (B2:B86)
    > > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > > >> The
    > > >> correct one to use is determined by the term of the loan which I need to
    > > >> pull
    > > >> from the 1st sheet in the workbook. The term of the loan will match the
    > > >> number in the 1st column next to the correct factor in the 2nd column.
    > > >> What
    > > >> would be the correct formula to use? I'm stumped. Thanks.

    > >
    > >
    > >


  41. #41
    Bill R
    Guest

    RE: Vlookup, What is correct formula for problem below?

    This is the first two columns on sheet #3. I am trying to Pull the finance
    term from a payment calculator in the 1st sheet which is located at (BA6) on
    that sheet and match it with the number in the 1st column to pull the factor
    in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    premium. Thanks.

    Term Rate
    1 0.29000
    2 0.57000
    3 0.86000
    4 1.03000
    5 1.20000
    6 1.37000
    7 1.52000
    8 1.67000
    9 1.82000
    10 1.95000
    11 2.07000
    12 2.20000
    13 2.27000
    14 2.33000

    "Bill R" wrote:

    > The workbook contains three sheets. The formula needs to be in the 2nd sheet
    > and it needs to pull a factor from a possible 85 choices located in (B2:B86)
    > in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates. The
    > correct one to use is determined by the term of the loan which I need to pull
    > from the 1st sheet in the workbook. The term of the loan will match the
    > number in the 1st column next to the correct factor in the 2nd column. What
    > would be the correct formula to use? I'm stumped. Thanks.


  42. #42
    Ken Hudson
    Guest

    Re: Vlookup, What is correct formula for problem below?

    And, if you are going to copy/drag your formula down from E12, you'll need to
    "anchor" your Sheet3 range reference in your formula:

    =VLOOKUP(Sheet1!BA6,Sheet3!$A$1:$B$14,2,FALSE)

    --
    Ken Hudson


    "Bill Kuunders" wrote:

    > So, in E12 on sheet2 enter
    > =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    > Regards
    > Bill K
    >
    > "Bill R" <[email protected]> wrote in message
    > news:[email protected]...
    > > This is the first two columns on sheet #3. I am trying to Pull the finance
    > > term from a payment calculator in the 1st sheet which is located at (BA6)
    > > on
    > > that sheet and match it with the number in the 1st column to pull the
    > > factor
    > > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > > premium. Thanks.
    > >
    > > Term Rate
    > > 1 0.29000
    > > 2 0.57000
    > > 3 0.86000
    > > 4 1.03000
    > > 5 1.20000
    > > 6 1.37000
    > > 7 1.52000
    > > 8 1.67000
    > > 9 1.82000
    > > 10 1.95000
    > > 11 2.07000
    > > 12 2.20000
    > > 13 2.27000
    > > 14 2.33000
    > >
    > > "Bill R" wrote:
    > >
    > >> The workbook contains three sheets. The formula needs to be in the 2nd
    > >> sheet
    > >> and it needs to pull a factor from a possible 85 choices located in
    > >> (B2:B86)
    > >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    > >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    > >> The
    > >> correct one to use is determined by the term of the loan which I need to
    > >> pull
    > >> from the 1st sheet in the workbook. The term of the loan will match the
    > >> number in the 1st column next to the correct factor in the 2nd column.
    > >> What
    > >> would be the correct formula to use? I'm stumped. Thanks.

    >
    >
    >


  43. #43
    Bill Kuunders
    Guest

    Re: Vlookup, What is correct formula for problem below?

    So, in E12 on sheet2 enter
    =VLOOKUP(Sheet1!BA6,Sheet3!A2:B86,2,FALSE)
    Regards
    Bill K

    "Bill R" <[email protected]> wrote in message
    news:[email protected]...
    > This is the first two columns on sheet #3. I am trying to Pull the finance
    > term from a payment calculator in the 1st sheet which is located at (BA6)
    > on
    > that sheet and match it with the number in the 1st column to pull the
    > factor
    > in the 2nd column beside it to (E12) on the 2nd sheet to calculate the Ins
    > premium. Thanks.
    >
    > Term Rate
    > 1 0.29000
    > 2 0.57000
    > 3 0.86000
    > 4 1.03000
    > 5 1.20000
    > 6 1.37000
    > 7 1.52000
    > 8 1.67000
    > 9 1.82000
    > 10 1.95000
    > 11 2.07000
    > 12 2.20000
    > 13 2.27000
    > 14 2.33000
    >
    > "Bill R" wrote:
    >
    >> The workbook contains three sheets. The formula needs to be in the 2nd
    >> sheet
    >> and it needs to pull a factor from a possible 85 choices located in
    >> (B2:B86)
    >> in the 3rd sheet. The choices are numbered 1 Thru 85 in the first column
    >> (A2:A86) in the 2nd sheet. These factors are for Credit Disability rates.
    >> The
    >> correct one to use is determined by the term of the loan which I need to
    >> pull
    >> from the 1st sheet in the workbook. The term of the loan will match the
    >> number in the 1st column next to the correct factor in the 2nd column.
    >> What
    >> would be the correct formula to use? I'm stumped. Thanks.




+ 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