<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://pickwiki.org/index.php?action=history&amp;feed=atom&amp;title=CSV</id>
	<title>CSV - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://pickwiki.org/index.php?action=history&amp;feed=atom&amp;title=CSV"/>
	<link rel="alternate" type="text/html" href="https://pickwiki.org/index.php?title=CSV&amp;action=history"/>
	<updated>2026-04-28T23:40:50Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://pickwiki.org/index.php?title=CSV&amp;diff=1636&amp;oldid=prev</id>
		<title>Conversion script: link fix</title>
		<link rel="alternate" type="text/html" href="https://pickwiki.org/index.php?title=CSV&amp;diff=1636&amp;oldid=prev"/>
		<updated>2015-02-26T23:48:54Z</updated>

		<summary type="html">&lt;p&gt;link fix&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;( New page needs more content )&lt;br /&gt;
&lt;br /&gt;
= Creating, Parsing, Importing, and Exporting CSV files =&lt;br /&gt;
It&amp;#039;s tempting to lump CSV files and Excel together but this delimited file format is used by many other applications as well. Almost every MV developer will be asked to import or export a CSV file in his/her career.&lt;br /&gt;
&lt;br /&gt;
== Creating CSV files ==&lt;br /&gt;
A CSV file is commonly either comma-delimited or tab-delimited. There actually is no official spec for CSV files, what gets quoted, how quotes or carriage returns are embedded in an element, etc. There are only accepted standards.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Add references to CSV creation code/techniques here&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parsing CSV files ==&lt;br /&gt;
&lt;br /&gt;
To parse from a CSV file to a dimensioned or dynamic array, a few utilities are available - see each one and feel free to comment here on quality, suitability, etc.&lt;br /&gt;
&lt;br /&gt;
* [[CSV2ARRAY]]&lt;br /&gt;
* [[CSV2FIELDS]]&lt;br /&gt;
* http://home.primus.ca/~lxp/prog.convert.from.csv.htm&lt;br /&gt;
* http://groups.google.com/group/comp.databases.pick/browse_frm/thread/b1ee5c93580758e4/c406cbf83f54d7d8&lt;br /&gt;
&lt;br /&gt;
== Importing and Exporting CSV files ==&lt;br /&gt;
All MV environments support an interface to the host file system. With D3 this is an OSFI DOS: reference with a path. In U2 this would be a type 1 or type 19 file. In other platforms one would use a DIRECTORY file. The easiest way to import or export CSV, like any text file, is simply to open the directory containing (or to contain) the file using your MV-specific interface, then just read/write the item like any other.&lt;br /&gt;
&lt;br /&gt;
From there most people wonder how they get that data into Excel (or another application), or how they get data from Excel (or another application into CSV in the first place. There are innumerable tools for import/export of CSV with various products. Many products will open a CSV natively, or save CSV as an option. In other cases conversion utilities are available. See [http://www.google.com/search?q=excel+to+csv+php this google link] for Excel to CSV tools, and use similar queries to find something that suits your needs. A freeware tool for exporting multiple Excel spreadsheets (tabs) from a workbook is provided at http://Nebula-RnD.com/freeware/.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
[[ConnectToMicrosoftExcel]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[Tags]]: excel google docs openoffice calc csv comma-delimited tab-delimited spreadsheet worksheet&lt;/div&gt;</summary>
		<author><name>Conversion script</name></author>
	</entry>
	<entry>
		<id>https://pickwiki.org/index.php?title=CSV&amp;diff=1637&amp;oldid=prev</id>
		<title>TonyG: New page</title>
		<link rel="alternate" type="text/html" href="https://pickwiki.org/index.php?title=CSV&amp;diff=1637&amp;oldid=prev"/>
		<updated>2009-12-19T19:52:32Z</updated>

		<summary type="html">&lt;p&gt;New page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;( New page needs more content )&lt;br /&gt;
&lt;br /&gt;
= Creating, Parsing, Importing, and Exporting CSV files =&lt;br /&gt;
It&amp;#039;s tempting to lump CSV files and Excel together but this delimited file format is used by many other applications as well. Almost every MV developer will be asked to import or export a CSV file in his/her career.&lt;br /&gt;
&lt;br /&gt;
== Creating CSV files ==&lt;br /&gt;
A CSV file is commonly either comma-delimited or tab-delimited. There actually is no official spec for CSV files, what gets quoted, how quotes or carriage returns are embedded in an element, etc. There are only accepted standards.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Add references to CSV creation code/techniques here&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Parsing CSV files ==&lt;br /&gt;
&lt;br /&gt;
To parse from a CSV file to a dimensioned or dynamic array, a few utilities are available - see each one and feel free to comment here on quality, suitability, etc.&lt;br /&gt;
&lt;br /&gt;
* [[CSV2ARRAY]]&lt;br /&gt;
* http://home.primus.ca/~lxp/prog.convert.from.csv.htm&lt;br /&gt;
* http://groups.google.com/group/comp.databases.pick/browse_frm/thread/b1ee5c93580758e4/c406cbf83f54d7d8&lt;br /&gt;
&lt;br /&gt;
== Importing and Exporting CSV files ==&lt;br /&gt;
All MV environments support an interface to the host file system. With D3 this is an OSFI DOS: reference with a path. In U2 this would be a type 1 or type 19 file. In other platforms one would use a DIRECTORY file. The easiest way to import or export CSV, like any text file, is simply to open the directory containing (or to contain) the file using your MV-specific interface, then just read/write the item like any other.&lt;br /&gt;
&lt;br /&gt;
From there most people wonder how they get that data into Excel (or another application), or how they get data from Excel (or another application into CSV in the first place. There are innumerable tools for import/export of CSV with various products. Many products will open a CSV natively, or save CSV as an option. In other cases conversion utilities are available. See [http://www.google.com/search?q=excel+to+csv+php this google link] for Excel to CSV tools, and use similar queries to find something that suits your needs. A freeware tool for exporting multiple Excel spreadsheets (tabs) from a workbook is provided at http://Nebula-RnD.com/freeware/.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
ConnectToMicrosoftExcel&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[Tags]]: excel google docs openoffice calc csv comma-delimited tab-delimited spreadsheet worksheet&lt;/div&gt;</summary>
		<author><name>TonyG</name></author>
	</entry>
</feed>