I am writing a bunch of data to an excel file and it keeps formatting some of the data to a date format. For example we have a part number that is APR35 and when I view the xls it auto formats it to Apr-35.
Can I append something to my $data variable so it doesn't auto format in excel?
my code:
$h = fopen('myfile.xls', 'w');
fwrite($h, $data."\t");
I appreciate the help.