Spreadsheet CSV/it: Difference between revisions

From FreeCAD Documentation
(Created page with "Foglio elettronico CSV")
 
No edit summary
 
(17 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
The [http://en.wikipedia.org/wiki/Comma-separated_values CSV format] (Comma-Separated Values) is a plain-text format to exchange spreadsheet data. It can usually be imported and exported by any spreadsheet application such as LibreOffice or Microsoft Excel. Reading and writing to csv format is done with python's built-in [http://docs.python.org/2/library/csv.html csv module].
Il [http://en.wikipedia.org/wiki/Comma-separated_values formato CSV] (comma-separated values) è un formato di testo semplice per scambiare i dati dei fogli di calcolo. Di solito può essere importato ed esportato da qualsiasi applicazione foglio di calcolo come LibreOffice o Microsoft Excel. La lettura e la scrittura in formato csv è fatto dal [http://docs.python.org/2/library/csv.html modulo csv] di Python interno.


== Importing ==
== Importazione ==
Importing a .csv file into FreeCAD creates a [[Spreadsheet Spreadsheet|spreadsheet]] object, then fills it with the values from the file.


Importando un file .csv file in FreeCAD si crea un oggetto [[File:Spreadsheet_CreateSheet.svg|16px]] [[Spreadsheet_CreateSheet|spreadsheet]] compilato con i valori del file.
== Exporting ==
Exporting a [[Spreadsheet Spreadsheet|spreadsheet]] object to a .csv file simply writes all the values of the spreadsheet object. Functions, such as "=A3+B5" are written as functions, not resulting values.


== Esportazione ==

Esportando un oggetto [[File:Spreadsheet_CreateSheet.svg|16px]] [[Spreadsheet_CreateSheet|spreadsheet]] in un file .csv file si scrivono semplicemente tutti i valori dell'oggetto foglio di calcolo. Le funzioni, tipo <code>=A3+B5</code> sono scritte come funzioni, non come valori risultanti.

{{Userdocnavi{{#translation:}}}}
[[Category:User_Documentation{{#translation:}}]]
[[Category:Spreadsheet{{#translation:}}]]
[[Category:File_Formats{{#translation:}}]]
{{clear}}
{{clear}}
<languages/>

Latest revision as of 20:29, 17 December 2022

Other languages:

Il formato CSV (comma-separated values) è un formato di testo semplice per scambiare i dati dei fogli di calcolo. Di solito può essere importato ed esportato da qualsiasi applicazione foglio di calcolo come LibreOffice o Microsoft Excel. La lettura e la scrittura in formato csv è fatto dal modulo csv di Python interno.

Importazione

Importando un file .csv file in FreeCAD si crea un oggetto spreadsheet compilato con i valori del file.

Esportazione

Esportando un oggetto spreadsheet in un file .csv file si scrivono semplicemente tutti i valori dell'oggetto foglio di calcolo. Le funzioni, tipo =A3+B5 sono scritte come funzioni, non come valori risultanti.