I'm working with a template excel file on a linux machine. I read from this file, use sql to gather a few bits of info, and then write this file again with the info filled in.
The reason Excel is being used is because the management created this file and will frequently change it, but will always needs the same input onto it.
I'm reading and writing everything just fine, except for the formulas. This is what I am trying to use:
$dest_sheet->write($row, $col, $storage_book->{$sheet}->{$row}->{$col}->{'Formula'});
But when I look at the new excel file, the cells that have formulas in the template, have nothign in the new file. Any ideas?
The reason Excel is being used is because the management created this file and will frequently change it, but will always needs the same input onto it.
I'm reading and writing everything just fine, except for the formulas. This is what I am trying to use:
$dest_sheet->write($row, $col, $storage_book->{$sheet}->{$row}->{$col}->{'Formula'});
But when I look at the new excel file, the cells that have formulas in the template, have nothign in the new file. Any ideas?