D 2019-08-16T20:30:27.379 L examples P 84b0be497973b7dfd5415f99cd34f5598c8a1bc2fa6415044f9a7b571297529b U alex W 3314

Examples


Generating XLSX with direct addressing with -index:

package require ooxml set spreadsheet [::ooxml::xl_write new -creator {Creator Name}] if {[set sheet [$spreadsheet worksheet {Sheet 1}]] > -1} { $spreadsheet cell $sheet 12.34 -index 0,0 $spreadsheet cell $sheet 5.6 -index 0,1 $spreadsheet cell $sheet {} -index C1 -formula {A1+B1} $spreadsheet cell $sheet {My Text} -index A2 -string $spreadsheet write my-first.xlsx } $spreadsheet destroy

You can use numeric index row,col (0,0) or alfanumeric index like Excel does rowcol (A1).

An other way is using autoincrement:

package require ooxml set spreadsheet [::ooxml::xl_write new -creator {Creator Name}] if {[set sheet [$spreadsheet worksheet {Sheet 1}]] > -1} { $spreadsheet row $sheet $spreadsheet cell $sheet 12.34 $spreadsheet cell $sheet 5.6 $spreadsheet cell $sheet {} -formula {A1+B1} $spreadsheet row $sheet $spreadsheet cell $sheet {My Text} -string $spreadsheet write my-first.xlsx } $spreadsheet destroy

Rows and coulmns are auto incremented and can be skipped by -index like this:

$spreadsheet row $spreadsheet cell $sheet Value1 $spreadsheet cell $sheet Value2 -index 4 $spreadsheet cell $sheet Value3 $spreadsheet row -index 3 $spreadsheet cell $sheet Value4

The result will be Value1 in 0,0 (A1), Value2 in 0,4 (E1), Value3 in 0,5 (F1) and Value4 in 3,0 (A4).

There are two helper to convert row,col to string and the other way around.

::ooxml::StringToRowColumn A1

Result = 0,0

::ooxml::RowColumnToString 0,0

Result = A1

An other helper can calculate the column width of a cell:

::ooxml::CalcColumnWidth 16

Result = 16.7109375


Example Files


[/artifact/08100118488d4bf3|sample1.tcl]:

Write an Excel file method one: direct addressing with -index.
Output: export1.xlsx


[/artifact/b4c372acfe53d92a|sample2.tcl]:

Write an Excel file method two: with row auto increment.
Output: export2.xlsx


[/artifact/0e61229dc27a38ed|sample3.tcl]:

Exporting a Tablelist to an Excel file.
Output: export3.xlsx


[/artifact/186c1193f2c37296|sample4.tcl]:

Write an Excel file with a formula A1+B1.
Output: export4.xlsx


[/artifact/341a4cbd7d5bc92d|sample5.tcl]:

Write an Excel file with defaultdatestyle set.
Output: export5.xlsx


[/artifact/2e75521984e18f6c|sample6.tcl]:

Write a complex Excel file with a lot of formats.
Output: export6.xlsx


[/artifact/0f8f51f54f5079c8|sample7.tcl]:

Read a complex Excel file (generated by Excel) interpret all known formats and write it back.
Input: original_excel.xlsx
Output: export7.xlsx


[/artifact/a4549c1eb1159a39 |sample8.tcl]:

Read in an Excel file search and replace some cells and write a new file.
Input: form8.xlsx
Output: export8.xlsx


[/artifact/8dd801dcf6626a53 |sample9.tcl]:

Write an Excel file testing new options like wrap.
Output: export9.xlsx


Z 019fb72726019ed1e78855d304405e01