in reply to Spreadsheet::WriteExcel, numbers v strings?
I've never seen that warning. What version of Excel are you using?
Does the following generate the same warning?
If not could you isolate the data field that causes the warning.#!/usr/bin/perl -w use strict; use Spreadsheet::WriteExcel; my $workbook = Spreadsheet::WriteExcel->new("test.xls"); my $worksheet = $workbook->add_worksheet(); $worksheet->write ('A1', 12345); $worksheet->write_string('A2', 12345); __END__
--
John.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Spreadsheet::WriteExcel, numbers v strings?
by alienhuman (Pilgrim) on Nov 13, 2003 at 14:34 UTC | |
|
Re^2: Spreadsheet::WriteExcel, numbers v strings?
by sanjus (Novice) on Mar 19, 2008 at 01:01 UTC | |
by jmcnamara (Monsignor) on Mar 20, 2008 at 04:30 UTC | |
by chrisjej (Initiate) on Mar 28, 2008 at 11:54 UTC | |
by jmcnamara (Monsignor) on Mar 28, 2008 at 18:54 UTC | |
by jamesgerard1964 (Novice) on Oct 09, 2014 at 23:15 UTC | |
by Anonymous Monk on Oct 21, 2014 at 20:15 UTC |