Vlookup a Date on another sheet

DavidMoran

New Member
Joined
Nov 22, 2017
Messages
12
Hi
I am having trouble extracting a value relating to a date in another worksheet.

I am trying to lookup the value relating to 31/12/2010 as follows:

[TABLE="width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]31/12/2009
[/TD]
[TD]€6604[/TD]
[/TR]
[TR]
[TD]31/12/2010[/TD]
[TD]€7784[/TD]
[/TR]
[TR]
[TD]31/12/2011[/TD]
[TD]€8544[/TD]
[/TR]
</tbody>[/TABLE]

I have tried a simple vlookup but to no avail
Thanks
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
I have tried a simple vlookup but to no avail

Hi, what formula did you try exactly?


Excel 2013/2016
ABCD
1AB
231/12/200966047784
331/12/20107784
431/12/20118544
Sheet1
Cell Formulas
RangeFormula
D2=VLOOKUP(DATE(2010,12,31),$A$2:$B$4,2,0)
 
Upvote 0
on the other worksheet I converted the date to a number (31/12/2010 = 40543) and did a vlookup from that.
 
Upvote 0
=VLOOKUP(P3,'Input Sheet'!$D$26:$D$95,6,0)

P3 is the coverted date to number and Input sheet is the other worksheet where the range is
 
Upvote 0
=VLOOKUP(P3,'Input Sheet'!$D$26:$D$95,6,0)

Your lookup table consists of only one column but you are attempting to retrieve data from the 6th column.

Maybe you need this instead:

=VLOOKUP(P3,'Input Sheet'!$D$26:$J$95,6,0)
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,327
Members
452,635
Latest member
laura12345

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