Vlookup table error when Lookup_value uses dates but there are gaps in the dates

JimBoBz

New Member
Joined
Apr 28, 2022
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Excel noob here. I am trying to create a vlookup that uses dates as the lookup value, my table array has data/date gaps so I end up with an error when it hits the 1st date gap. is there a way to work around this?

=VLOOKUP(A2,'Created - priority '!A2:F1333,2,FALSE)

1701851169949.png


ok until it hits 25/03/2020 (covid lockdown)

1701851242294.png


the table array has date gaps ( data was pulled from an SQL database) and has gaps all through lockdown

1701851304260.png
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Perhaps
Excel Formula:
=IFERROR(VLOOKUP(A2,'Created - priority '!$A$2:$F$1333,2,FALSE),"")
( did you omit the absolute referencing on purpose?)
 
Upvote 0
try this

Excel Formula:
=IFERROR(XLOOKUP(A2,'Created - priority '!A:A,'Created - priority '!B:B,"")
 
Upvote 0

Forum statistics

Threads
1,215,097
Messages
6,123,076
Members
449,094
Latest member
mystic19

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