Vlookup based on date amorization calendar

charcoop14

New Member
Joined
Jul 28, 2014
Messages
17
Hello friends, Im trying to figure out a best way to get data based on todays date. Here is the situation:

First Tab I have todays date: =today()...TAB 1 CELL A1

Tab 2: I have 3 COLUMNS
Column A: DATE -which has the first of month date(e,g. 03/01/2018, 04/01/2018, 05/01,2018....etc)
Column B: Dollar Amount which is lower each month depending on loan amount to pay off (e.g. for march 1 its $400,000, april 1 its $399,400, etc)

Solution I need

I need a cell on tab 1 which lookups todays date and returns the dollar amount based on todays date within todays month.

So for example....today is 03/10/18 so the cell should pick up march 1 2018 dollar amount which is $400,000

on april 2 when I open the excel document, it will pick up the amount of $399,400 automatically.


Thanks!
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Here's an example. Adjust sheet names and lookup range to fit your situation.
Sheet1

ABC
13/10/2018
2TodayAmount
33/10/2018700

<tbody>
</tbody>

Spreadsheet Formulas
CellFormula
A1=TODAY()
B3=A1
C3=IFERROR(VLOOKUP(DATE(YEAR(B3),MONTH(B3),1),Sheet2!$A$2:$B$8,2,0),"")

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4

Sheet2

AB
#cacaca ; text-align:center; " >1
DateAmount
#cacaca ; text-align:center; " >21/1/2018900
#cacaca ; text-align:center; " >32/1/2018800
#cacaca ; text-align:center; " >43/1/2018700
#cacaca ; text-align:center; " >54/1/2018600
#cacaca ; text-align:center; " >65/1/2018500
#cacaca ; text-align:center; " >76/1/2018400
#cacaca ; text-align:center; " >87/1/2018300

<tbody>
</tbody>
EDIT: IGNORE THE LEFT COLUMN

Excel tables to the web >> Excel Jeanie HTML 4
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,978
Members
449,200
Latest member
Jamil ahmed

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