I am saving cell addresses in a sheet but Excel converts some cells addresses to date like OCT8 to Oct-08, APR8 to apr-08.
Later on when getting cell values it gives date not cell addresses stored in the cell. Cell addresses are stored in an array and copying array by the following VBA code. It removes text formatting from cells and converts to custom date format:
.Range("c1").Resize(UBound(SA) + 1, 1).Value = Application.Transpose(SA)
$A$1
. – glh'APR8
and'Oct8
this will override the auto conversion. – glh