When reading a Hebrew written file the field read first is the right-most field as expected.
How can I write a file so that it will be rendered from right to left?
Posted on Mon Mar 20 17:35:11 2006
by jmcnamarain response to 1974
Re: Writing a Hebrew (right to left) file
The Spreadsheet::WriteExcel parent class supports a worksheet right_to_left() method for Hebew style worksheets. So you should be able to do something like the following with Spreadsheet::WriteExcel::Simple:
my $spreadsheet = Spreadsheet::WriteExcel::Simple->new();
my $worksheet = $spreadsheet->sheet();
$worksheet->right_to_left();
...