How to pull data based on today's date from a monthly payment schedule in excel?

ajg12

New Member
Joined
Mar 4, 2016
Messages
1
I am new to this forum so hopefully I am going about this the right way.

In excel I have a payment schedule for a loan with several vertical columns. The far left column is a list of payment dates that are arranged one month apart, ex: 03/01/2016, 04/01/2016, 05/01/2016, and so on down the column. In the far right column I have the remaining balance of the loan after each months payment, ex: $72,500, $72,000, $71,500 ect...

What I am trying to do is create a formula that pulls the remaining loan balance (far right column) based on what "todays" date is. In other words I want to be able to open up the model on any given day and know how much my balance is on that particular day. But I don't know how to correlate "todays" balance based on a monthly payment schedule that only shows the first day of each month.

I can't seem to figure out how to do it, I m thinking it needs to be an "if then" function with a vlook up. Any help is greatly appreciated.


Thanks
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
A VLOOKUP is what your after. To get the 1st of the current month use DATE

=DATE(YEAR(TODAY()),MONTH(TODAY()),1)
So it uses the current year, and current month, but the 1st day.

As I don't know how many columns you have, I've written this for 2 columns.

=VLOOKUP(DATE(YEAR(TODAY()),MONTH(TODAY()),1),A1:B12,2)

Hope this helps.
 
Upvote 0

Forum statistics

Threads
1,214,861
Messages
6,121,969
Members
449,059
Latest member
oculus

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top