Help with VLookup in Excel 2003 please

G

Guest

I need to write a 2 Vlookup formulas at Cell E25 to display the date a loan
will be repaid and secondly the total interest paid.
I have an analysis table called 'table' with 6 columns
1. Date
2. Opening loan balance
3. Add interest
4. Less payment
5. Closing balance
6. Cumulative interest
I can get the sheet to work easily but the vlookups are an entirely
different matter, I just cant get them to work. My boss has specified that he
wants lookups.
TIA Chris
 
J

JE McGimpsey

One way:

You can't use VLOOKUP for the date, since the date is to the left of the
balance. You can use INDEX(MATCH()), though:

=INDEX(table, MATCH(0, OFFSET(table,0,4,,1),FALSE),1)

total interest paid is more straightforward:

=VLOOKUP(0,OFFSET(table,0,4,,2),2,FALSE)
 
G

Guest

Thank you for sending me the links JE, the solution is already in place, I do
appreciate your time. Regards Chris.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top