Reputation: 5
Everyday I receive a file where the date is in YYYYMMDD but it is stored as a number i.e. 20200203. However I want to do a VLOOKUP on this but I have a date value of 43760 (or similar). I cant change the file I am doing the VLOOKUP on as I only have a read only access.
How can I do this?
I have searched everywhere but cant actually find the solution. Only an issue
Upvotes: 0
Views: 136
Reputation: 50007
Use TEXT
to format your date and then --
to convert the result to a number. If your date value is in A1
, then
=VLOOKUP(--TEXT(A1,"yyyymmdd"),...)
Upvotes: 1