How to cut string in table arrary vlookup in excel vba.
Application.WorksheetFunction.VLookup(sheet1.Range("F2"), sheet2.Range("B11:D25"), 3, False)
B11 IS date cell: i want to substring only Month and year, so i dont need day.
F2 is selected date (apr-2013) and B11 is date(01-apr-2013) for table lookup, i want to cut 01.
Find apr-2013 and Lookup value should apr-2013 too.
Regards,
True
instead ofFalse
as the last parameter as the approximate match? – user2140173