I am attempting to extract a date from a cell that is in string format using a particular VLOOKUP.
This is the VLOOPUP statement (it works!)
The date is showing in the 20th column of the Data worksheet in the following format '20140923 08:03:38'
I need the VLOOKUP to be adapted so that it continues to pull in the data in the 20th column but converts it into date format dd/mm/yyyy.
Any help would be much appreciated!
This is the VLOOPUP statement (it works!)
Code:
Target.Offset(0, 20) = Evaluate("=VLOOKUP(" & Chr(34) & Target.Value & Chr(34) & ",'[Volume Alerts.xlsm] Data'!$A:$W,20,FALSE)")
The date is showing in the 20th column of the Data worksheet in the following format '20140923 08:03:38'
I need the VLOOKUP to be adapted so that it continues to pull in the data in the 20th column but converts it into date format dd/mm/yyyy.
Any help would be much appreciated!