Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 36
Default Lookup table for rates?

Hi All! I'm still getting used to Excel2007 :-| Here's my question.

I'm trying to create a worksheet that will calculate interest on accounts on
a daily basis. The rate is tiered, based on the balance. However, the rates
change over time, too. I would like to create a lookup table that stores the
rates over time, so that the formula calculating the interest owed does not
have to be entered by hand. My lookup table would be in the form of:

Account limit 03/01/2009 03/15/2009
2500.00 Rate 1 Rate 2
10000.00 Rate 3 Rate 4
25000.00 Rate 5 Rate 6 etc...

Then on my calculation page, I would be inputing the dates that I'm
calculating for, and the lookup would choose the rate - i.e. if my balance
was 14247.63 on 03/10, my rate would be Rate3, if my balance was 9473.37 on
3/25, my rate would be Rate 2, etc.

Also, any assistance with setting this up to be less prone to "input error"
is appreciated!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,722
Default Lookup table for rates?

Assumptions:
Top-left corner of table is C1
Current balance in A2
Current date in A3

=INDEX(D2:F4,MATCH(A2,C2:C4),MATCH(A3,D1:F1))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Wanda" wrote:

Hi All! I'm still getting used to Excel2007 :-| Here's my question.

I'm trying to create a worksheet that will calculate interest on accounts on
a daily basis. The rate is tiered, based on the balance. However, the rates
change over time, too. I would like to create a lookup table that stores the
rates over time, so that the formula calculating the interest owed does not
have to be entered by hand. My lookup table would be in the form of:

Account limit 03/01/2009 03/15/2009
2500.00 Rate 1 Rate 2
10000.00 Rate 3 Rate 4
25000.00 Rate 5 Rate 6 etc...

Then on my calculation page, I would be inputing the dates that I'm
calculating for, and the lookup would choose the rate - i.e. if my balance
was 14247.63 on 03/10, my rate would be Rate3, if my balance was 9473.37 on
3/25, my rate would be Rate 2, etc.

Also, any assistance with setting this up to be less prone to "input error"
is appreciated!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 36
Default Lookup table for rates?

see also my reply below to Toothless Mama

"Luke M" wrote:

Assumptions:
Top-left corner of table is C1
Current balance in A2
Current date in A3

=INDEX(D2:F4,MATCH(A2,C2:C4),MATCH(A3,D1:F1))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Wanda" wrote:

Hi All! I'm still getting used to Excel2007 :-| Here's my question.

I'm trying to create a worksheet that will calculate interest on accounts on
a daily basis. The rate is tiered, based on the balance. However, the rates
change over time, too. I would like to create a lookup table that stores the
rates over time, so that the formula calculating the interest owed does not
have to be entered by hand. My lookup table would be in the form of:

Account limit 03/01/2009 03/15/2009
2500.00 Rate 1 Rate 2
10000.00 Rate 3 Rate 4
25000.00 Rate 5 Rate 6 etc...

Then on my calculation page, I would be inputing the dates that I'm
calculating for, and the lookup would choose the rate - i.e. if my balance
was 14247.63 on 03/10, my rate would be Rate3, if my balance was 9473.37 on
3/25, my rate would be Rate 2, etc.

Also, any assistance with setting this up to be less prone to "input error"
is appreciated!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Lookup table for rates?

Assume your data in A1:C4 header in row 1
Criteria E2 holds balance, and F2 holds date

In G2: =INDEX(A1:C4,MATCH(E2,A1:A4),MATCH(F2,A1:C1))


"Wanda" wrote:

Hi All! I'm still getting used to Excel2007 :-| Here's my question.

I'm trying to create a worksheet that will calculate interest on accounts on
a daily basis. The rate is tiered, based on the balance. However, the rates
change over time, too. I would like to create a lookup table that stores the
rates over time, so that the formula calculating the interest owed does not
have to be entered by hand. My lookup table would be in the form of:

Account limit 03/01/2009 03/15/2009
2500.00 Rate 1 Rate 2
10000.00 Rate 3 Rate 4
25000.00 Rate 5 Rate 6 etc...

Then on my calculation page, I would be inputing the dates that I'm
calculating for, and the lookup would choose the rate - i.e. if my balance
was 14247.63 on 03/10, my rate would be Rate3, if my balance was 9473.37 on
3/25, my rate would be Rate 2, etc.

Also, any assistance with setting this up to be less prone to "input error"
is appreciated!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 36
Default Lookup table for rates?

I'm planning on making my data in a table that would be "ever growing" my
data could be in a table that is perhaps A1:IV4. Would the formula below
still work (changing cell references accordingly, of course).

Thanks!

"Teethless mama" wrote:

Assume your data in A1:C4 header in row 1
Criteria E2 holds balance, and F2 holds date

In G2: =INDEX(A1:C4,MATCH(E2,A1:A4),MATCH(F2,A1:C1))


"Wanda" wrote:

Hi All! I'm still getting used to Excel2007 :-| Here's my question.

I'm trying to create a worksheet that will calculate interest on accounts on
a daily basis. The rate is tiered, based on the balance. However, the rates
change over time, too. I would like to create a lookup table that stores the
rates over time, so that the formula calculating the interest owed does not
have to be entered by hand. My lookup table would be in the form of:

Account limit 03/01/2009 03/15/2009
2500.00 Rate 1 Rate 2
10000.00 Rate 3 Rate 4
25000.00 Rate 5 Rate 6 etc...

Then on my calculation page, I would be inputing the dates that I'm
calculating for, and the lookup would choose the rate - i.e. if my balance
was 14247.63 on 03/10, my rate would be Rate3, if my balance was 9473.37 on
3/25, my rate would be Rate 2, etc.

Also, any assistance with setting this up to be less prone to "input error"
is appreciated!



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Lookup data in a variable table & retrieve data from a pivot table Shawna Excel Worksheet Functions 3 October 10th 08 11:11 PM
Multiple lookup values and adding multiple rates across together ssolomon Excel Worksheet Functions 5 November 16th 07 09:02 PM
And new Pay Rates Blissfully Ignorant Excel Discussion (Misc queries) 6 December 21st 05 02:46 PM
Income Tax Payable from table with escalating marginal percentage rates. Bosko Excel Worksheet Functions 5 November 4th 05 09:20 AM
Pivot table doing a lookup without using the lookup function? NGASGELI Excel Discussion (Misc queries) 0 August 2nd 05 05:08 AM


All times are GMT +1. The time now is 08:39 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"