Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: old style xls module

by talexb (Chancellor)
on Aug 07, 2018 at 03:16 UTC ( [id://1219972]=note: print w/replies, xml ) Need Help??


in reply to old style xls module

You could also just generate a CSV file. That works fine in lots of versions of Excel. :)

Alex / talexb / Toronto

Thanks PJ. We owe you so much. Groklaw -- RIP -- 2003 to 2013.

Replies are listed 'Best First'.
Re^2: old style xls module
by Tux (Canon) on Aug 07, 2018 at 06:51 UTC

    Yes and no. CSV is very portable, but, certainly on web-pages, subject to locale-trouble. As the separator (esp on Windows) is depending on the locale setting, it might do strange things on other poeple's machines.

    As XLS, the old style Excel, is very well documented, it is much safer to generate your data as CSV and convert it to Excel (.xls) yourself and use that for the CGI.


    Enjoy, Have FUN! H.Merijn
Re^2: old style xls module
by huck (Prior) on Aug 07, 2018 at 18:28 UTC

    You could also just generate a CSV file. That works fine in lots of versions of Excel. :)

    There are a lot of problems i used to face when creating CSV/TDF files for Excel. I first encountered this problem dealing with leading zeros and stock numbers that looked like 1E123. Below find a csv file that documents some of them.

    ="--------------------" ="leading equals fixes these" "something excell may think as a date" ,="2012-12-12" ,"2012-12-12" ,="2/4" ,"2/4" "something excell may think is a number" ,="1e123" ,"1e123" "leading zeros" ,="00001" ,"00001" "leading equals" ,="=x" ,"=x" "there are more that ive forgotten" ="--------------------" ="leading equals busts these" "commas in string" ,"created,2016-06-19-03-02-26" ,="created,2016-06-19-03-02-26" "long strings" ,"|001-----0|010-----0|020-----0|030-----0|040-----0|050-----0|060---- +-0|070-----0|080-----0|090-----0|101-----0|110-----0|120-----0|130--- +--0|140-----0|150-----0|160-----0|170-----0|180-----0|190-----0|201-- +---0|210-----0|220-----0|230-----0|240-----0|250-----0|260-----0|270- +----0|280-----0|290-----0" ,="|001-----0|010-----0|020-----0|030-----0|040-----0|050-----0|060--- +--0|070-----0|080-----0|090-----0|101-----0|110-----0|120-----0|130-- +---0|140-----0|150-----0|160-----0|170-----0|180-----0|190-----0|201- +----0|210-----0|220-----0|230-----0|240-----0|250-----0|260-----0|270 +-----0|280-----0|290-----0" "so everthing is output as =""..."" that does not have a comma or is l +ong" "you can still perform arithmatic on a =""..."" when it is a number"
    As you can see i used what i called the "literal function" (="...") to deal with many of them.

Re^2: old style xls module
by afoken (Chancellor) on Aug 07, 2018 at 17:49 UTC
    You could also just generate a CSV file. That works fine in lots of versions of Excel. :)

    And as an extra bonus, the users are not locked in to Excel, but could also use other spreadsheet applications. On the other hand, most of them can read Excel files, more or less.

    One quite obvious difference between XLS(X) and CSV is that you can not add any formatting to CSV. You simply can not make one row bold or a column green, or a cell contain a big fat warning. For that, you need one of the Excel formats, or generate HTML and perhaps a style sheet. Of course, importing HTML into Excel is a completely different problem.

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

      Other advantages of XLS/XLSX/ODS over CSV:

      • Multiple sheets
      • Multiple encodings (CSV has no official support for encodings at all, unless you use a BOM which breaks many parsers)
      • Comments and notes
      • Hiding columns and/or rows
      • Happy managers

      Enjoy, Have FUN! H.Merijn

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1219972]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-03-28 21:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found