in reply to Re^7: Excel to CSV datetime conversion- format changes
in thread Excel to CSV datetime conversion- format changes
Spreadsheet::ParseExcel::Utility is not the same thing as Spreadsheet::ParseExcel, it's not a drop in replacement, it imports some extra functions, it's not a replacement for Spreadsheet::ParseExcel. Please read and understand the documentation of the modules you use within your programs.
Update: For example:
#!/usr/bin/perl -w # For each tab (worksheet) in a file (workbook), # spit out columns separated by ",", # and rows separated by c/r. use strict; use Spreadsheet::ParseExcel; use Spreadsheet::ParseExcel::Utility qw(ExcelFmt); # In your code: # my $e = Spreadsheet::ParseExcel::Utility qw(ExcelFmt); my $excel = Spreadsheet::ParseExcel->new(); # The rest of your script.....
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: Excel to CSV datetime conversion- format changes
by vsmeruga (Acolyte) on Apr 25, 2014 at 10:55 UTC | |
by marto (Cardinal) on Apr 25, 2014 at 11:02 UTC | |
by vsmeruga (Acolyte) on Apr 25, 2014 at 11:04 UTC | |
by marto (Cardinal) on Apr 25, 2014 at 11:08 UTC |