As ridiculous as it seems I have a problem when it comes to getting the name of a Excel sheet because it is written to me in date format. The sheet has name JUL02 and I want to get exactly the literal "JUL02", however, when reading the name of the sheet and writing it in a cell, what you type is 02-Jul, as if it was a date. As simple as:
resNam = Workbook.Worksheets(l).Name
Workbook.Worksheets.Cells(a, b) = resNam
I've already tried with CStr both CStr(Workbook.Worksheets(l).Name)
as CStr(resNam)
, but still putting the same.
Any help or approach is appreciated.