I\'m having problem making the match() work in excel VBA. The code is:
x = Application.Match(\"Sep 2008\", Range(\"F1:F1\"), 0)
The value i
This way it works using this method:
Nbr,L, C as Integer
Nbr,L, C
Datedeb as date
Datedeb
nbr = WorksheetFunction.Match(CLng(CDate(Datedeb)), Range(Cells(L, C), Cells(L + 100, C)), 0)