Creating Excel Files With Python and XlsxWriter (v1.2.9 - 2020) PDF
Creating Excel Files With Python and XlsxWriter (v1.2.9 - 2020) PDF
XlsxWriter
Release 1.2.9
John McNamara
1 Introduction 3
i
7.3 worksheet.write_string() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
7.4 worksheet.write_number() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
7.5 worksheet.write_formula() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
7.6 worksheet.write_array_formula() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
7.7 worksheet.write_blank() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
7.8 worksheet.write_boolean() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
7.9 worksheet.write_datetime() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
7.10 worksheet.write_url() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
7.11 worksheet.write_rich_string() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
7.12 worksheet.write_row() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
7.13 worksheet.write_column() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
7.14 worksheet.set_row() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
7.15 worksheet.set_column() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
7.16 worksheet.insert_image() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
7.17 worksheet.insert_chart() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
7.18 worksheet.insert_textbox() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
7.19 worksheet.insert_button() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
7.20 worksheet.data_validation() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
7.21 worksheet.conditional_format() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
7.22 worksheet.add_table() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
7.23 worksheet.add_sparkline() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
7.24 worksheet.write_comment() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
7.25 worksheet.show_comments() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
7.26 worksheet.set_comments_author() . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
7.27 worksheet.get_name() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
7.28 worksheet.activate() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
7.29 worksheet.select() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
7.30 worksheet.hide() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
7.31 worksheet.set_first_sheet() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
7.32 worksheet.merge_range() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
7.33 worksheet.autofilter() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
7.34 worksheet.filter_column() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
7.35 worksheet.filter_column_list() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
7.36 worksheet.set_selection() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
7.37 worksheet.freeze_panes() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
7.38 worksheet.split_panes() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
7.39 worksheet.set_zoom() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
7.40 worksheet.right_to_left() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
7.41 worksheet.hide_zero() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
7.42 worksheet.set_tab_color() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
7.43 worksheet.protect() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
7.44 worksheet.set_default_row() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
7.45 worksheet.outline_settings() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
7.46 worksheet.set_vba_name() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
ii
8.3 worksheet.set_page_view() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
8.4 worksheet.set_paper() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
8.5 worksheet.center_horizontally() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
8.6 worksheet.center_vertically() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
8.7 worksheet.set_margins() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
8.8 worksheet.set_header() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
8.9 worksheet.set_footer() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102
8.10 worksheet.repeat_rows() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
8.11 worksheet.repeat_columns() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
8.12 worksheet.hide_gridlines() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
8.13 worksheet.print_row_col_headers() . . . . . . . . . . . . . . . . . . . . . . . . . . . 104
8.14 worksheet.hide_row_col_headers() . . . . . . . . . . . . . . . . . . . . . . . . . . . 104
8.15 worksheet.print_area() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105
8.16 worksheet.print_across() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 106
8.17 worksheet.fit_to_pages() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 106
8.18 worksheet.set_start_page() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
8.19 worksheet.set_print_scale() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
8.20 worksheet.set_h_pagebreaks() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108
8.21 worksheet.set_v_pagebreaks() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108
iii
9.28 format.set_fg_color() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 135
9.29 format.set_border() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 135
9.30 format.set_bottom() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136
9.31 format.set_top() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136
9.32 format.set_left() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
9.33 format.set_right() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
9.34 format.set_border_color() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
9.35 format.set_bottom_color() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
9.36 format.set_top_color() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 138
9.37 format.set_left_color() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 138
9.38 format.set_right_color() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 138
9.39 format.set_diag_border() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 138
9.40 format.set_diag_type() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 139
9.41 format.set_diag_color() . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 139
iv
12.6 Exception: UnsupportedImageFormat . . . . . . . . . . . . . . . . . . . . . . . . . . 173
12.7 Exception: FileSizeError . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174
12.8 Exception: EmptyChartSeries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174
12.9 Exception: DuplicateTableName . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175
12.10Exception: InvalidWorksheetName . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175
12.11Exception: DuplicateWorksheetName . . . . . . . . . . . . . . . . . . . . . . . . . . 176
v
18.15Chart Fonts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 243
18.16Chart Layout . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 245
18.17Date Category Axes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 247
18.18Chart Secondary Axes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 248
18.19Combined Charts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 249
18.20Chartsheets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 252
18.21Charts from Worksheet Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 252
18.22Chart Limitations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 253
18.23Chart Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 253
vi
24.2 Textbox size and positioning . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 323
24.3 Textbox Formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 326
24.4 Textbox formatting: Line . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 327
24.5 Textbox formatting: Border . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 329
24.6 Textbox formatting: Solid Fill . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 329
24.7 Textbox formatting: Gradient Fill . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 331
24.8 Textbox formatting: Fonts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 332
24.9 Textbox formatting: Align . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 334
24.10Textbox formatting: Text Rotation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 334
24.11Textbox Textlink . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
24.12Textbox Hyperlink . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 335
vii
30 Working with Python Pandas and XlsxWriter 361
30.1 Using XlsxWriter with Pandas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 361
30.2 Accessing XlsxWriter from Pandas . . . . . . . . . . . . . . . . . . . . . . . . . . . . 362
30.3 Adding Charts to Dataframe output . . . . . . . . . . . . . . . . . . . . . . . . . . . 363
30.4 Adding Conditional Formatting to Dataframe output . . . . . . . . . . . . . . . . . . 364
30.5 Formatting of the Dataframe output . . . . . . . . . . . . . . . . . . . . . . . . . . . 365
30.6 Formatting of the Dataframe headers . . . . . . . . . . . . . . . . . . . . . . . . . . 367
30.7 Handling multiple Pandas Dataframes . . . . . . . . . . . . . . . . . . . . . . . . . . 368
30.8 Passing XlsxWriter constructor options to Pandas . . . . . . . . . . . . . . . . . . . 369
30.9 Saving the Dataframe output to a string . . . . . . . . . . . . . . . . . . . . . . . . . 370
30.10Additional Pandas and Excel Information . . . . . . . . . . . . . . . . . . . . . . . . 370
31 Examples 371
31.1 Example: Hello World . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 371
31.2 Example: Simple Feature Demonstration . . . . . . . . . . . . . . . . . . . . . . . . 372
31.3 Example: Catch exception on closing . . . . . . . . . . . . . . . . . . . . . . . . . . 373
31.4 Example: Dates and Times in Excel . . . . . . . . . . . . . . . . . . . . . . . . . . . 374
31.5 Example: Adding hyperlinks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 376
31.6 Example: Array formulas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 378
31.7 Example: Applying Autofilters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 379
31.8 Example: Data Validation and Drop Down Lists . . . . . . . . . . . . . . . . . . . . . 385
31.9 Example: Conditional Formatting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 389
31.10Example: Defined names/Named ranges . . . . . . . . . . . . . . . . . . . . . . . . 396
31.11Example: Merging Cells . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 398
31.12Example: Writing “Rich” strings with multiple formats . . . . . . . . . . . . . . . . . 399
31.13Example: Merging Cells with a Rich String . . . . . . . . . . . . . . . . . . . . . . . 401
31.14Example: Inserting images into a worksheet . . . . . . . . . . . . . . . . . . . . . . 403
31.15Example: Inserting images from a URL or byte stream into a worksheet . . . . . . . 405
31.16Example: Left to Right worksheets and text . . . . . . . . . . . . . . . . . . . . . . . 407
31.17Example: Simple Django class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 408
31.18Example: Simple HTTP Server (Python 2) . . . . . . . . . . . . . . . . . . . . . . . 409
31.19Example: Simple HTTP Server (Python 3) . . . . . . . . . . . . . . . . . . . . . . . 411
31.20Example: Adding Headers and Footers to Worksheets . . . . . . . . . . . . . . . . 412
31.21Example: Freeze Panes and Split Panes . . . . . . . . . . . . . . . . . . . . . . . . 416
31.22Example: Worksheet Tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 418
31.23Example: Writing User Defined Types (1) . . . . . . . . . . . . . . . . . . . . . . . . 426
31.24Example: Writing User Defined Types (2) . . . . . . . . . . . . . . . . . . . . . . . . 428
31.25Example: Writing User Defined types (3) . . . . . . . . . . . . . . . . . . . . . . . . 430
31.26Example: Sparklines (Simple) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 432
31.27Example: Sparklines (Advanced) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 434
31.28Example: Adding Cell Comments to Worksheets (Simple) . . . . . . . . . . . . . . . 441
31.29Example: Adding Cell Comments to Worksheets (Advanced) . . . . . . . . . . . . . 443
31.30Example: Insert Textboxes into a Worksheet . . . . . . . . . . . . . . . . . . . . . . 448
31.31Example: Outline and Grouping . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 453
31.32Example: Collapsed Outline and Grouping . . . . . . . . . . . . . . . . . . . . . . . 458
31.33Example: Setting Document Properties . . . . . . . . . . . . . . . . . . . . . . . . . 462
31.34Example: Simple Unicode with Python 2 . . . . . . . . . . . . . . . . . . . . . . . . 464
31.35Example: Simple Unicode with Python 3 . . . . . . . . . . . . . . . . . . . . . . . . 465
viii
31.36Example: Unicode - Polish in UTF-8 . . . . . . . . . . . . . . . . . . . . . . . . . . . 465
31.37Example: Unicode - Shift JIS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 467
31.38Example: Setting Worksheet Tab Colors . . . . . . . . . . . . . . . . . . . . . . . . 469
31.39Example: Diagonal borders in cells . . . . . . . . . . . . . . . . . . . . . . . . . . . 470
31.40Example: Enabling Cell protection in Worksheets . . . . . . . . . . . . . . . . . . . 472
31.41Example: Hiding Worksheets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 473
31.42Example: Hiding Rows and Columns . . . . . . . . . . . . . . . . . . . . . . . . . . 475
31.43Example: Example of subclassing the Workbook and Worksheet classes . . . . . . 476
31.44Example: Advanced example of subclassing . . . . . . . . . . . . . . . . . . . . . . 478
31.45Example: Adding a VBA macro to a Workbook . . . . . . . . . . . . . . . . . . . . . 482
ix
34.1 OpenPyXL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 565
34.2 Xlwings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 565
34.3 XLWT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 565
34.4 XLRD . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 565
x
39.15Release 1.1.5 - February 22 2019 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 577
39.16Release 1.1.4 - February 10 2019 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 578
39.17Release 1.1.3 - February 9 2019 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 578
39.18Release 1.1.2 - October 20 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 578
39.19Release 1.1.1 - September 22 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . 578
39.20Release 1.1.0 - September 2 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 578
39.21Release 1.0.9 - August 27 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 578
39.22Release 1.0.8 - August 27 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 579
39.23Release 1.0.7 - August 16 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 579
39.24Release 1.0.6 - August 15 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 579
39.25Release 1.0.5 - May 19 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 579
39.26Release 1.0.4 - April 14 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 579
39.27Release 1.0.3 - April 10 2018 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 580
39.28Release 1.0.2 - October 14 2017 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 580
39.29Release 1.0.1 - October 14 2017 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 580
39.30Release 1.0.0 - September 16 2017 . . . . . . . . . . . . . . . . . . . . . . . . . . . 580
39.31Release 0.9.9 - September 5 2017 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 580
39.32Release 0.9.8 - July 1 2017 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 580
39.33Release 0.9.7 - June 25 2017 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 580
39.34Release 0.9.6 - Dec 26 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 581
39.35Release 0.9.5 - Dec 24 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 581
39.36Release 0.9.4 - Dec 2 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 581
39.37Release 0.9.3 - July 8 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 581
39.38Release 0.9.2 - June 13 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 581
39.39Release 0.9.1 - June 8 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 581
39.40Release 0.9.0 - June 7 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 581
39.41Release 0.8.9 - June 1 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 582
39.42Release 0.8.8 - May 31 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 582
39.43Release 0.8.7 - May 13 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 582
39.44Release 0.8.6 - April 27 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 582
39.45Release 0.8.5 - April 17 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 582
39.46Release 0.8.4 - January 16 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 582
39.47Release 0.8.3 - January 14 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 582
39.48Release 0.8.2 - January 13 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 583
39.49Release 0.8.1 - January 12 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 583
39.50Release 0.8.0 - January 10 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 583
39.51Release 0.7.9 - January 9 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 583
39.52Release 0.7.8 - January 6 2016 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 583
39.53Release 0.7.7 - October 19 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 583
39.54Release 0.7.6 - October 7 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 583
39.55Release 0.7.5 - October 4 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 583
39.56Release 0.7.4 - September 29 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . 584
39.57Release 0.7.3 - May 7 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 584
39.58Release 0.7.2 - March 29 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 584
39.59Release 0.7.1 - March 23 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 584
39.60Release 0.7.0 - March 21 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 584
39.61Release 0.6.9 - March 19 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 584
39.62Release 0.6.8 - March 17 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 585
xi
39.63Release 0.6.7 - March 1 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 585
39.64Release 0.6.6 - January 16 2015 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 585
39.65Release 0.6.5 - December 31 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . 585
39.66Release 0.6.4 - November 15 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . 585
39.67Release 0.6.3 - November 6 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 586
39.68Release 0.6.2 - November 1 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 586
39.69Release 0.6.1 - October 29 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 586
39.70Release 0.6.0 - October 15 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 586
39.71Release 0.5.9 - October 11 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 586
39.72Release 0.5.8 - September 28 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . 586
39.73Release 0.5.7 - August 13 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 587
39.74Release 0.5.6 - July 22 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 587
39.75Release 0.5.5 - May 6 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 587
39.76Release 0.5.4 - May 4 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 587
39.77Release 0.5.3 - February 20 2014 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 587
39.78Release 0.5.2 - December 31 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . 588
39.79Release 0.5.1 - December 2 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 588
39.80Release 0.5.0 - November 17 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . 588
39.81Release 0.4.9 - November 17 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . 588
39.82Release 0.4.8 - November 13 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . 588
39.83Release 0.4.7 - November 9 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 589
39.84Release 0.4.6 - October 23 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 589
39.85Release 0.4.5 - October 21 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 589
39.86Release 0.4.4 - October 16 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 589
39.87Release 0.4.3 - September 12 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . 589
39.88Release 0.4.2 - August 30 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 589
39.89Release 0.4.1 - August 28 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 589
39.90Release 0.4.0 - August 26 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 590
39.91Release 0.3.9 - August 24 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 590
39.92Release 0.3.8 - August 23 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 590
39.93Release 0.3.7 - August 16 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 590
39.94Release 0.3.6 - July 26 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 590
39.95Release 0.3.5 - June 28 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 590
39.96Release 0.3.4 - June 27 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 591
39.97Release 0.3.3 - June 10 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 591
39.98Release 0.3.2 - May 1 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 591
39.99Release 0.3.1 - April 27 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 591
39.100Release 0.3.0 - April 7 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 591
39.101Release 0.2.9 - April 7 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 591
39.102Release 0.2.8 - April 4 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 592
39.103Release 0.2.7 - April 3 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 592
39.104Release 0.2.6 - April 1 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 592
39.105Release 0.2.5 - April 1 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 592
39.106Release 0.2.4 - March 31 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 592
39.107Release 0.2.3 - March 27 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 593
39.108Release 0.2.2 - March 27 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 593
39.109Release 0.2.1 - March 25 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 593
39.110Release 0.2.0 - March 24 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 593
xii
39.111Release 0.1.9 - March 19 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 593
39.112Release 0.1.8 - March 18 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 593
39.113Release 0.1.7 - March 18 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 594
39.114Release 0.1.6 - March 17 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 594
39.115Release 0.1.5 - March 10 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 594
39.116Release 0.1.4 - March 8 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 594
39.117Release 0.1.3 - March 7 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 594
39.118Release 0.1.2 - March 6 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 595
39.119Release 0.1.1 - March 3 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 595
39.120Release 0.1.0 - February 28 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 595
39.121Release 0.0.9 - February 27 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 595
39.122Release 0.0.8 - February 26 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 596
39.123Release 0.0.7 - February 25 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 596
39.124Release 0.0.6 - February 22 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 596
39.125Release 0.0.5 - February 21 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 596
39.126Release 0.0.4 - February 20 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 596
39.127Release 0.0.3 - February 19 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 597
39.128Release 0.0.2 - February 18 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 597
39.129Release 0.0.1 - February 17 2013 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 597
40 Author 599
40.1 Asking questions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 599
40.2 Sponsorship and Donations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 599
41 License 601
xiii
xiv
Creating Excel files with Python and XlsxWriter, Release 1.2.9
XlsxWriter is a Python module that can be used to write text, numbers, formulas and hyperlinks
to multiple worksheets in an Excel 2007+ XLSX file. It supports features such as formatting and
many more, including:
• 100% compatible Excel XLSX files.
• Full formatting.
• Merged cells.
• Defined names.
• Charts.
• Autofilters.
• Data validation and drop down lists.
• Conditional formatting.
• Worksheet PNG/JPEG/BMP/WMF/EMF images.
• Rich multi-format strings.
• Cell comments.
CONTENTS 1
Creating Excel files with Python and XlsxWriter, Release 1.2.9
• Textboxes.
• Integration with Pandas.
• Memory optimization mode for writing large files.
It supports Python 2.7, 3.4+ and PyPy and uses standard libraries only.
2 CONTENTS
CHAPTER
ONE
INTRODUCTION
XlsxWriter is a Python module for writing files in the Excel 2007+ XLSX file format.
It can be used to write text, numbers, and formulas to multiple worksheets and it supports features
such as formatting, images, charts, page setup, autofilters, conditional formatting and many others.
XlsxWriter has some advantages and disadvantages over the alternative Python modules for writ-
ing Excel files.
• Advantages:
– It supports more Excel features than any of the alternative modules.
– It has a high degree of fidelity with files produced by Excel. In most cases the files
produced are 100% equivalent to files produced by Excel.
– It has extensive documentation, example files and tests.
– It is fast and can be configured to use very little memory even for very large output files.
• Disadvantages:
– It cannot read or modify existing Excel XLSX files.
XlsxWriter is licensed under a BSD License and the source code is available on GitHub.
To try out the module see the next section on Getting Started with XlsxWriter .
3
Creating Excel files with Python and XlsxWriter, Release 1.2.9
4 Chapter 1. Introduction
CHAPTER
TWO
Here are some easy instructions to get you up and running with the XlsxWriter module.
The first step is to install the XlsxWriter module. There are several ways to do this.
The pip installer is the preferred method for installing Python modules from PyPI, the Python
Package Index:
$ pip install XlsxWriter
If you download a tarball of the latest version of XlsxWriter you can install it as follows (change the
version number to suit):
$ tar -zxvf XlsxWriter-1.2.3.tar.gz
$ cd XlsxWriter-1.2.3
$ python setup.py install
5
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The XlsxWriter source code and bug tracker is in the XlsxWriter repository on GitHub. You can
clone the repository and install from it as follows:
$ git clone https://github.com/jmcnamara/XlsxWriter.git
$ cd XlsxWriter
$ python setup.py install
If the installation went correctly you can create a small sample program like the following to verify
that the module works correctly:
import xlsxwriter
workbook = xlsxwriter.Workbook('hello.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
This will output a file called hello.xlsx which should look something like the following:
If you downloaded a tarball or cloned the repo, as shown above, you should also have a directory
called examples with some sample applications that demonstrate different features of XlsxWriter.
2.3 Documentation
The latest version of this document is hosted on Read The Docs. It is also available as a PDF.
Once you are happy that the module is installed and operational you can have a look at the rest of
the XlsxWriter documentation. Tutorial 1: Create a simple XLSX file is a good place to start.
2.3. Documentation 7
Creating Excel files with Python and XlsxWriter, Release 1.2.9
THREE
Let’s start by creating a simple spreadsheet using Python and the XlsxWriter module.
Say that we have some data on monthly outgoings that we want to convert into an Excel XLSX
file:
expenses = (
['Rent', 1000],
['Gas', 100],
['Food', 300],
['Gym', 50],
)
# Start from the first cell. Rows and columns are zero indexed.
row = 0
col = 0
9
Creating Excel files with Python and XlsxWriter, Release 1.2.9
workbook.close()
If we run this program we should get a spreadsheet that looks like this:
This is a simple example but the steps involved are representative of all programs that use Xl-
sxWriter, so let’s break it down into separate parts.
The first step is to import the module:
import xlsxwriter
The next step is to create a new workbook object using the Workbook() constructor.
Workbook() takes one, non-optional, argument which is the filename that we want to create:
workbook = xlsxwriter.Workbook('Expenses01.xlsx')
Note: XlsxWriter can only create new files. It cannot read or modify existing files.
The workbook object is then used to add a new worksheet via the add_worksheet() method:
worksheet = workbook.add_worksheet()
By default worksheet names in the spreadsheet will be Sheet1, Sheet2 etc., but we can also
specify a name:
worksheet1 = workbook.add_worksheet() # Defaults to Sheet1.
worksheet2 = workbook.add_worksheet('Data') # Data.
worksheet3 = workbook.add_worksheet() # Defaults to Sheet3.
We can then use the worksheet object to write data via the write() method:
worksheet.write(row, col, some_data)
Note: Throughout XlsxWriter, rows and columns are zero indexed. The first cell in a worksheet,
A1, is (0, 0).
So in our example we iterate over our data and write it out as follows:
# Iterate over the data and write it out row by row.
for item, cost in (expenses):
worksheet.write(row, col, item)
worksheet.write(row, col + 1, cost)
row += 1
We then add a formula to calculate the total of the items in the second column:
worksheet.write(row, 1, '=SUM(B1:B4)')
And that’s it. We now have a file that can be read by Excel and other spreadsheet applications.
In the next sections we will see how we can use the XlsxWriter module to add formatting and other
Excel features.
11
Creating Excel files with Python and XlsxWriter, Release 1.2.9
FOUR
In the previous section we created a simple spreadsheet using Python and the XlsxWriter module.
This converted the required data into an Excel file but it looked a little bare. In order to make the
information clearer we would like to add some simple formatting, like this:
The differences here are that we have added Item and Cost column headers in a bold font, we
have formatted the currency in the second column and we have made the Total string bold.
To do this we can extend our program as follows:
13
Creating Excel files with Python and XlsxWriter, Release 1.2.9
import xlsxwriter
workbook.close()
The main difference between this and the previous program is that we have added two Format
objects that we can use to format cells in the spreadsheet.
Format objects represent all of the formatting properties that can be applied to a cell in Excel such
as fonts, number formatting, colors and borders. This is explained in more detail in The Format
Class section.
For now we will avoid getting into the details and just use a limited amount of the format function-
ality to add some simple formatting:
# Add a bold format to use to highlight cells.
bold = workbook.add_format({'bold': True})
We can then pass these formats as an optional third parameter to the worksheet.write() method
to format the data in the cell:
write(row, column, token, [format])
Like this:
worksheet.write(row, 0, 'Total', bold)
Which leads us to another new feature in this program. To add the headers in the first row of the
worksheet we used write() like this:
worksheet.write('A1', 'Item', bold)
worksheet.write('B1', 'Cost', bold)
So, instead of (row, col) we used the Excel ’A1’ style notation. See Working with Cell Nota-
tion for more details but don’t be too concerned about it for now. It is just a little syntactic sugar to
help with laying out worksheets.
In the next section we will look at handling more data types.
15
Creating Excel files with Python and XlsxWriter, Release 1.2.9
FIVE
In the previous section we created a simple spreadsheet with formatting using Python and the
XlsxWriter module.
This time let’s extend the data we want to write to include some dates:
expenses = (
['Rent', '2013-01-13', 1000],
['Gas', '2013-01-14', 100],
['Food', '2013-01-16', 300],
['Gym', '2013-01-20', 50],
)
17
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The differences here are that we have added a Date column with formatting and made that column
a little wider to accommodate the dates.
To do this we can extend our program as follows:
workbook.close()
The main difference between this and the previous program is that we have added a new Format
object for dates and we have additional handling for data types.
Excel treats different types of input data, such as strings and numbers, differently although it gen-
erally does it transparently to the user. XlsxWriter tries to emulate this in the worksheet.write()
method by mapping Python data types to types that Excel supports.
The write() method acts as a general alias for several more specific methods:
• write_string()
• write_number()
• write_blank()
• write_formula()
• write_datetime()
• write_boolean()
• write_url()
In this version of our program we have used some of these explicit write_ methods for different
types of data:
19
Creating Excel files with Python and XlsxWriter, Release 1.2.9
This is mainly to show that if you need more control over the type of data you write to a worksheet
you can use the appropriate method. In this simplified example the write() method would
actually have worked just as well.
The handling of dates is also new to our program.
Dates and times in Excel are floating point numbers that have a number format applied to display
them in the correct format. If the date and time are Python datetime objects XlsxWriter makes
the required number conversion automatically. However, we also need to add the number format
to ensure that Excel displays it as as date:
Date handling is explained in more detail in Working with Dates and Time.
The last addition to our program is the set_column() method to adjust the width of column ‘B’
so that the dates are more clearly visible:
# Adjust the column width.
worksheet.set_column('B:B', 15)
SIX
The Workbook class is the main class exposed by the XlsxWriter module and it is the only class
that you will need to instantiate directly.
The Workbook class represents the entire spreadsheet as you see it in Excel and internally it
represents the Excel file as it is written on disk.
6.1 Constructor
Workbook(filename[, options ])
Create a new XlsxWriter Workbook object.
Parameters
• filename (string) – The name of the new Excel file to create.
• options (dict) – Optional workbook parameters. See below.
Return type A Workbook object.
The Workbook() constructor is used to create a new Excel workbook with a given filename:
import xlsxwriter
workbook = xlsxwriter.Workbook('filename.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
21
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Note, in this mode a row of data is written and then discarded when a cell in a new row
is added via one of the worksheet write_() methods. Therefore, once this mode is ac-
tive, data should be written in sequential row order. For this reason the add_table() and
merge_range() Worksheet methods don’t work in this mode.
See Working with Memory and Performance for more details.
• tmpdir: XlsxWriter stores workbook data in temporary files prior to assembling the final
XLSX file. The temporary files are created in the system’s temp directory. If the default
temporary directory isn’t accessible to your application, or doesn’t contain enough space,
you can specify an alternative location using the tmpdir option:
workbook = xlsxwriter.Workbook(filename, {'tmpdir': '/home/user/tmp'})
True:
workbook = xlsxwriter.Workbook(filename, {'in_memory': True})
Note: This option used to be the recommended way of deploying XlsxWriter on Google APP
Engine since it didn’t support a /tmp directory. However, the Python 3 Runtime Environment
in Google App Engine now supports a filesystem with read/write access to /tmp which means
this option isn’t required. The /tmp dir isn’t supported in the Python 2 Runtime Environment
so this option is still required there.
• max_url_length: Set the maximum length for hyperlinks in worksheets. The default is 2079
and the minimum is 255. Versions of Excel prior to Excel 2015 limited hyperlink links and
anchor/locations to 255 characters each. Versions after that support urls up to 2079 charac-
ters. XlsxWriter versions >= 1.2.3 support the new longer limit by default. However, a lower
or user defined limit can be set via the max_url_length option:
workbook = xlsxwriter.Workbook(filename, {'max_url_length': 255})
• default_date_format: This option is used to specify a default date format string for use
with the worksheet.write_datetime() method when an explicit format isn’t given. See
Working with Dates and Time for more details:
xlsxwriter.Workbook(filename, {'default_date_format': 'dd/mm/yy'})
6.1. Constructor 23
Creating Excel files with Python and XlsxWriter, Release 1.2.9
time in functions such as write_datetime(). As such the user should convert and re-
move the timezones in some way that makes sense according to their requirements. Al-
ternatively the remove_timezone option can be used to strip the timezone from datetime
values. The default is False. To enable this option use:
workbook = xlsxwriter.Workbook(filename, {'remove_timezone': True})
When specifying a filename it is recommended that you use an .xlsx extension or Excel will
generate a warning when opening the file.
The Workbook() method also works using the with context manager. In which case it doesn’t
need an explicit close() statement:
output = BytesIO()
workbook = xlsxwriter.Workbook(output)
worksheet = workbook.add_worksheet()
worksheet.write('A1', 'Hello')
workbook.close()
xlsx_data = output.getvalue()
To avoid the use of any temporary files and keep the entire file in-memory use the in_memory
constructor option shown above.
See also Example: Simple HTTP Server (Python 2) and Example: Simple HTTP Server (Python
3).
6.2 workbook.add_worksheet()
add_worksheet([name ])
Add a new worksheet to a workbook.
6.2. workbook.add_worksheet() 25
Creating Excel files with Python and XlsxWriter, Release 1.2.9
• You should not use the Excel reserved name “History”, or case insensitive variants as this is
restricted in English, and other, versions of Excel.
The rules for worksheet names in Excel are explained in the Microsoft Office documentation on
how to Rename a worksheet.
6.3 workbook.add_format()
add_format([properties ])
Create a new Format object to formats cells in worksheets.
Parameters properties (dictionary ) – An optional dictionary of format properties.
Return type A format object.
The add_format() method can be used to create new Format objects which are used to apply
formatting to a cell. You can either define the properties at creation time via a dictionary of property
values or later via method calls:
format1 = workbook.add_format(props) # Set properties at creation.
format2 = workbook.add_format() # Set properties later.
See the The Format Class section for more details about Format properties and how to set them.
6.4 workbook.add_chart()
add_chart(options)
Create a chart object that can be added to a worksheet.
Parameters options (dictionary ) – An dictionary of chart type options.
Return type A Chart object.
This method is use to create a new chart object that can be inserted into a worksheet via the
insert_chart() Worksheet method:
chart = workbook.add_chart({'type': 'column'})
• type
This is a required parameter. It defines the type of chart that will be created:
chart = workbook.add_chart({'type': 'line'})
area
bar
column
doughnut
line
pie
radar
scatter
stock
• subtype
Used to define a chart subtype where available:
workbook.add_chart({'type': 'bar', 'subtype': 'stacked'})
See the The Chart Class for a list of available chart subtypes.
Note: A chart can only be inserted into a worksheet once. If several similar charts are required
then each one must be created separately with add_chart().
6.5 workbook.add_chartsheet()
add_chartsheet([sheetname ])
Add a new add_chartsheet to a workbook.
Parameters sheetname (string) – Optional chartsheet name, defaults to Chart1,
etc.
Return type A chartsheet object.
The add_chartsheet() method adds a new chartsheet to a workbook.
6.5. workbook.add_chartsheet() 27
Creating Excel files with Python and XlsxWriter, Release 1.2.9
6.6 workbook.close()
close()
Close the Workbook object and write the XLSX file.
Raises
• FileCreateError – if there is a file or permissions error during writing.
• DuplicateTableName – if a duplicate worksheet table name was added.
• EmptyChartSeries – if a chart is added without a data series.
• UndefinedImageSize – if an image doesn’t contain height/width data.
• UnsupportedImageFormat – if an image type isn’t supported.
This is a required method call to close and write the xlsxwriter file, unless you are using the with
context manager, see below.
The Workbook object also works using the with context manager. In which case it doesn’t need
an explicit close() statement:
With xlsxwriter.Workbook('hello_world.xlsx') as workbook:
worksheet = workbook.add_worksheet()
The workbook will close automatically when exiting the scope of the with statement.
The most common exception during close() is FileCreateError which is generally caused
by a write permission error. On Windows this usually occurs if the file being created is already
open in Excel. This exception can be caught in a try block where you can instruct the user to
close the open file before overwriting it:
while True:
try:
workbook.close()
except xlsxwriter.exceptions.FileCreateError as e:
# For Python 3 use input() instead of raw_input().
decision = raw_input("Exception caught in workbook.close(): %s\n"
"Please close the file if it is open in Excel.\n"
"Try to write file again? [Y/n]: " % e)
if decision != 'n':
continue
break
6.7 workbook.set_size()
set_size(width, height)
Set the size of a workbook window.
Parameters
• width (int) – Width of the window in pixels.
• height (int) – Height of the window in pixels.
The set_size() method can be used to set the size of a workbook window:
6.7. workbook.set_size() 29
Creating Excel files with Python and XlsxWriter, Release 1.2.9
workbook.set_size(1200, 800)
The Excel window size was used in Excel 2007 to define the width and height of a workbook
window within the Multiple Document Interface (MDI). In later versions of Excel for Windows this
interface was dropped. This method is currently only useful when setting the window size in Excel
for Mac 2011. The units are pixels and the default size is 1073 x 644.
Note, this doesn’t equate exactly to the Excel for Mac pixel size since it is based on the original
Excel 2007 for Windows sizing. Some trial and error may be required to get an exact size.
6.8 workbook.tab_ratio()
set_tab_ratio(tab_ratio)
Set the ratio between the worksheet tabs and the horizontal slider.
Parameters tab_ratio (float) – The tab ratio between 0 and 100.
The set_tab_ratio() method can be used to set the ratio between worksheet tabs and the
horizontal slider at the bottom of a workbook. This can be increased to give more room to the tabs
or reduced to increase the size of the horizontal slider:
workbook.set_tab_ratio(75)
6.9 workbook.set_properties()
set_properties(properties)
Set the document properties such as Title, Author etc.
Parameters properties (dict) – Dictionary of document properties.
The set_properties() method can be used to set the document properties of the Excel file
created by XlsxWriter. These properties are visible when you use the Office Button ->
Prepare -> Properties option in Excel and are also available to external applications that
read or index windows files.
The properties that can be set are:
• title
• subject
• author
• manager
• company
• category
• keywords
• comments
• status
• hyperlink_base
• create - the file creation date as a datetime.date object.
The properties are all optional and should be passed in dictionary format as follows:
workbook.set_properties({
'title': 'This is an example spreadsheet',
'subject': 'With document properties',
'author': 'John McNamara',
'manager': 'Dr. Heinz Doofenshmirtz',
'company': 'of Wolves',
'category': 'Example spreadsheets',
'keywords': 'Sample, Example, Properties',
'created': datetime.date(2018, 1, 1),
'comments': 'Created with Python and XlsxWriter'})
6.9. workbook.set_properties() 31
Creating Excel files with Python and XlsxWriter, Release 1.2.9
6.10 workbook.set_custom_property()
6.10. workbook.set_custom_property() 33
Creating Excel files with Python and XlsxWriter, Release 1.2.9
However, in almost all cases the type will be inferred correctly from the Python type, like in the
example above.
Note: the name and value parameters are limited to 255 characters by Excel.
6.11 workbook.define_name()
define_name()
Create a defined name in the workbook to use as a variable.
Parameters
• name (string) – The defined name.
• formula (string) – The cell or range that the defined name refers to.
This method is used to defined a name that can be used to represent a value, a single cell or a
range of cells in a workbook. These are sometimes referred to as a “Named Range”.
Defined names are generally used to simplify or clarify formulas by using descriptive variable
names:
workbook.define_name('Exchange_rate', '=0.96')
worksheet.write('B3', '=B2*Exchange_rate')
As in Excel a name defined like this is “global” to the workbook and can be referred to from any
worksheet:
# Global workbook name.
workbook.define_name('Sales', '=Sheet1!$G$1:$H$10')
It is also possible to define a local/worksheet name by prefixing it with the sheet name using the
syntax ’sheetname!definedname’:
# Local worksheet name.
workbook.define_name('Sheet2!Sales', '=Sheet2!$G$1:$G$10')
If the sheet name contains spaces or special characters you must follow the Excel convention and
enclose it in single quotes:
workbook.define_name("'New Data'!Sales", '=Sheet2!$G$1:$G$10')
The rules for names in Excel are explained in the Microsoft Office documentation on how to Define
and use names in formulas.
See also Example: Defined names/Named ranges.
6.11. workbook.define_name() 35
Creating Excel files with Python and XlsxWriter, Release 1.2.9
6.12 workbook.add_vba_project()
add_vba_project(vba_project [, is_stream ])
Add a vbaProject binary to the Excel workbook.
Parameters
• vba_project – The vbaProject binary file name.
• is_stream (bool) – The vba_project is an in memory byte stream.
The add_vba_project() method can be used to add macros or functions to a workbook using
a binary VBA project file that has been extracted from an existing Excel xlsm file:
workbook.add_vba_project('./vbaProject.bin')
6.13 workbook.set_vba_name()
set_vba_name(name)
Set the VBA name for the workbook.
Parameters name (string) – The VBA name for the workbook.
The set_vba_name() method can be used to set the VBA codename for the workbook. This is
sometimes required when a vbaProject macro included via add_vba_project() refers to the
workbook. The default Excel VBA name of ThisWorkbook is used if a user defined name isn’t
specified.
See Working with VBA Macros for more details.
6.14 workbook.worksheets()
worksheets()
Return a list of the worksheet objects in the workbook.
Return type A list of worksheet objects.
The worksheets() method returns a list of the worksheets in a workbook. This is useful if you
want to repeat an operation on each worksheet in a workbook:
6.15 workbook.get_worksheet_by_name()
get_worksheet_by_name(name)
Return a worksheet object in the workbook using the sheetname.
Parameters name (string) – Name of worksheet that you wish to retrieve.
Return type A worksheet object.
The get_worksheet_by_name() method returns the worksheet or chartsheet object with the
the given name or None if it isn’t found:
worksheet = workbook.get_worksheet_by_name('Sheet1')
6.16 workbook.get_default_url_format()
get_default_url_format()
Return a format object.
Return type A format object.
The get_default_url_format() method gets a copy of the default url format used when a
user defined format isn’t specified with write_url(). The format is the hyperlink style defined
by Excel for the default theme:
url_format = workbook.get_default_url_format()
6.17 workbook.set_calc_mode()
set_calc_mode(mode)
Set the Excel calculation mode for the workbook.
Parameters mode (string) – The calculation mode string
Set the calculation mode for formulas in the workbook. This is mainly of use for workbooks with
slow formulas where you want to allow the user to calculate them manually.
The mode parameter can be:
• auto: The default. Excel will re-calculate formulas when a formula or a value affecting the
formula changes.
• manual: Only re-calculate formulas when the user requires it. Generally by pressing F9.
• auto_except_tables: Excel will automatically re-calculate formulas except for tables.
6.15. workbook.get_worksheet_by_name() 37
Creating Excel files with Python and XlsxWriter, Release 1.2.9
6.18 workbook.use_zip64()
use_zip64()
Allow ZIP64 extensions when writing the xlsx file zip container.
Use ZIP64 extensions when writing the xlsx file zip container to allow files greater than 4 GB.
Note: When using the use_zip64() option the zip file created by the Python standard library
zipfile.py may cause Excel to issue a warning about repairing the file. This warning is annoy-
ing but harmless. The “repaired” file will contain all of the data written by XlsxWriter, only the zip
container will be changed.
SEVEN
The worksheet class represents an Excel worksheet. It handles operations such as writing data
to cells or formatting worksheet layout.
A worksheet object isn’t instantiated directly. Instead a new worksheet is created by calling the
add_worksheet() method from a Workbook() object:
workbook = xlsxwriter.Workbook('filename.xlsx')
worksheet1 = workbook.add_worksheet()
worksheet2 = workbook.add_worksheet()
worksheet1.write('A1', 123)
workbook.close()
7.1 worksheet.write()
39
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Parameters
• row – The cell row (zero indexed).
• col – The cell column (zero indexed).
• *args – The additional args that are passed to the sub methods such as
number, string and cell_format.
Returns 0: Success.
Returns -1: Row or column is out of worksheet bounds.
Returns Other values from the called write methods.
Excel makes a distinction between data types such as strings, numbers, blanks, formulas and
hyperlinks. To simplify the process of writing data to an XlsxWriter file the write() method acts
as a general alias for several more specific methods:
• write_string()
• write_number()
• write_blank()
• write_formula()
• write_datetime()
• write_boolean()
• write_url()
The rules for handling data in write() are as follows:
• Data types float, int, long, decimal.Decimal and fractions.Fraction are writ-
ten using write_number().
• Data types datetime.datetime, datetime.date datetime.time or date-
time.timedelta are written using write_datetime() .
• None and empty strings "" are written using write_blank().
• Data type bool is written using write_boolean().
Strings are then handled as follows:
• Strings that start with "=" are take to match a formula and are written using
write_formula(). This can be overridden, see below.
• Strings that match supported URL types are written using write_url(). This can be
overridden, see below.
• When the Workbook() constructor strings_to_numbers option is True strings that con-
vert to numbers using float() are written using write_number() in order to avoid Excel
warnings about “Numbers Stored as Text”. See the note below.
• Strings that don’t match any of the above criteria are written using write_string().
If none of the above types are matched the value is evaluated with float() to see if it corresponds
to a user defined float type. If it does then it is written using write_number().
Finally, if none of these rules are matched then a TypeError exception is raised. However, it is
also possible to handle additional, user defined, data types using the add_write_handler()
method explained below and in Writing user defined types.
Here are some examples:
worksheet.write(0, 0, 'Hello') # write_string()
worksheet.write(1, 0, 'World') # write_string()
worksheet.write(2, 0, 2) # write_number()
worksheet.write(3, 0, 3.00001) # write_number()
worksheet.write(4, 0, '=SIN(PI()/4)') # write_formula()
worksheet.write(5, 0, '') # write_blank()
worksheet.write(6, 0, None) # write_blank()
Note: The Workbook() constructor option takes three optional arguments that can be used
to override string handling in the write() function. These options are shown below with their
default values:
7.1. worksheet.write() 41
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The write() method supports two forms of notation to designate the position of cells: Row-
column notation and A1 notation:
# These are equivalent.
worksheet.write(0, 0, 'Hello')
worksheet.write('A1', 'Hello')
7.2 worksheet.add_write_handler()
add_write_handler(user_type, user_function)
Add a callback function to the write() method to handle user define types.
Parameters
• user_type (type) – The user type() to match on.
• user_function (types.FunctionType) – The user defined function to write
the type data.
As explained above, the write() method maps basic Python types to corresponding Excel
types. If you want to write an unsupported type then you can either avoid write() and map
the user type in your code to one of the more specific write methods or you can extend it using the
add_write_handler() method.
For example, say you wanted to automatically write uuid values as strings using write() you
would start by creating a function that takes the uuid, converts it to a string and then writes it using
write_string():
def write_uuid(worksheet, row, col, uuid, format=None):
string_uuid = str(uuid)
return worksheet.write_string(row, col, string_uuid, format)
You could then add a handler that matches the uuid type and calls your user defined function:
# match, action()
worksheet.add_write_handler(uuid.UUID, write_uuid)
# Write the UUID. This would raise a TypeError without the handler.
worksheet.write('A1', my_uuid)
Multiple callback functions can be added using add_write_handler() but only one callback
action is allowed per type. However, it is valid to use the same callback function for different types:
worksheet.add_write_handler(int, test_number_range)
worksheet.add_write_handler(float, test_number_range)
See Writing user defined types for more details on how this feature works and how to write callback
functions, and also the following examples:
• Example: Writing User Defined Types (1)
• Example: Writing User Defined Types (2)
• Example: Writing User Defined types (3)
7.3 worksheet.write_string()
7.3. worksheet.write_string() 43
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Both row-column and A1 style notation are supported, as shown above. See Working with Cell
Notation for more details.
The cell_format parameter is used to apply formatting to the cell. This parameter is optional
but when present is should be a valid Format object.
Unicode strings are supported in UTF-8 encoding. This generally requires that your source file in
also UTF-8 encoded:
# _*_ coding: utf-8
# Python 2 example.
See Example: Simple Unicode with Python 2 and Example: Simple Unicode with Python 3 for
more complete examples.
Alternatively, you can read data from an encoded file, convert it to UTF-8 during reading and then
write the data to an Excel file. See Example: Unicode - Polish in UTF-8 and Example: Unicode -
Shift JIS.
The maximum string size supported by Excel is 32,767 characters. Strings longer than this will be
truncated by write_string().
Note: Even though Excel allows strings of 32,767 characters it can only display 1000 in a cell.
However, all 32,767 characters are displayed in the formula bar.
7.4 worksheet.write_number()
Both row-column and A1 style notation are supported, as shown above. See Working with Cell
Notation for more details.
The numeric types supported are float, int, long, decimal.Decimal and frac-
tions.Fraction or anything that can be converted via float().
When written to an Excel file numbers are converted to IEEE-754 64-bit double-precision floating
point. This means that, in most cases, the maximum number of digits that can be stored in Excel
without losing precision is 15.
Note: NAN and INF are not supported and will raise a TypeError exception.
The cell_format parameter is used to apply formatting to the cell. This parameter is optional
but when present is should be a valid Format object.
7.5 worksheet.write_formula()
7.4. worksheet.write_number() 45
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Both row-column and A1 style notation are supported, as shown above. See Working with Cell
Notation for more details.
Array formulas are also supported:
worksheet.write_formula('A7', '{=SUM(A1:B1*A2:B2)}')
See Formulas added in Excel 2010 and later for a detailed explanation and full list of functions
that are affected.
7.6 worksheet.write_array_formula()
Both row-column and A1 style notation are supported, as shown above. See Working with Cell
Notation for more details.
If the array formula returns a single value then the first_ and last_ parameters should be the
same:
worksheet.write_array_formula('A1:A1', '{=SUM(B1:C1*B2:C2)}')
It this case however it is easier to just use the write_formula() or write() methods:
# Same as above but more concise.
worksheet.write('A1', '{=SUM(B1:C1*B2:C2)}')
worksheet.write_formula('A1', '{=SUM(B1:C1*B2:C2)}')
The cell_format parameter is used to apply formatting to the cell. This parameter is optional
but when present is should be a valid Format object.
7.6. worksheet.write_array_formula() 47
Creating Excel files with Python and XlsxWriter, Release 1.2.9
If required, it is also possible to specify the calculated result of the formula (see discussion of
formulas and the value parameter for the write_formula() method above). However, using
this parameter only writes a single value to the upper left cell in the result array. See Formula
Results for more details.
See also Example: Array formulas.
7.7 worksheet.write_blank()
Both row-column and A1 style notation are supported, as shown above. See Working with Cell
Notation for more details.
This method is used to add formatting to a cell which doesn’t contain a string or number value.
Excel differentiates between an “Empty” cell and a “Blank” cell. An “Empty” cell is a cell which
doesn’t contain data or formatting whilst a “Blank” cell doesn’t contain data but does contain for-
matting. Excel stores “Blank” cells but ignores “Empty” cells.
As such, if you write an empty cell without formatting it is ignored:
worksheet.write('A1', None, cell_format) # write_blank()
worksheet.write('A2', None) # Ignored
This seemingly uninteresting fact means that you can write arrays of data without special treatment
for None or empty string values.
7.8 worksheet.write_boolean()
Parameters
• row (int) – The cell row (zero indexed).
• col (int) – The cell column (zero indexed).
• boolean (bool) – Boolean value to write to cell.
• cell_format (Format) – Optional Format object.
Returns 0: Success.
Returns -1: Row or column is out of worksheet bounds.
The write_boolean() method writes a boolean value to the cell specified by row and column:
worksheet.write_boolean(0, 0, True)
worksheet.write_boolean('A2', False)
Both row-column and A1 style notation are supported, as shown above. See Working with Cell
Notation for more details.
The cell_format parameter is used to apply formatting to the cell. This parameter is optional
but when present is should be a valid Format object.
7.9 worksheet.write_datetime()
Both row-column and A1 style notation are supported, as shown above. See Working with Cell
Notation for more details.
The datetime should be a datetime.datetime, datetime.date datetime.time or date-
time.timedelta object. The datetime class is part of the standard Python libraries.
7.9. worksheet.write_datetime() 49
Creating Excel files with Python and XlsxWriter, Release 1.2.9
There are many ways to create datetime objects, for example the date-
time.datetime.strptime() method:
date_time = datetime.datetime.strptime('2013-01-23', '%Y-%m-%d')
If required, a default date format string can be set using the Workbook() constructor de-
fault_date_format option.
See Working with Dates and Time for more details and also Timezone Handling in XlsxWriter .
7.10 worksheet.write_url()
Both row-column and A1 style notation are supported, as shown above. See Working with Cell
Notation for more details.
The cell_format parameter is used to apply formatting to the cell. This parameter is optional
and the default Excel hyperlink style will be used if it isn’t specified. If required you can access the
default url format using the Workbook get_default_url_format() method:
url_format = workbook.get_default_url_format()
Four web style URI’s are supported: http://, https://, ftp:// and mailto::
worksheet.write_url('A1', 'ftp://www.python.org/')
worksheet.write_url('A2', 'https://www.python.org/')
worksheet.write_url('A3', 'mailto:[email protected]')
All of the these URI types are recognized by the write() method, so the following are equivalent:
worksheet.write_url('A2', 'https://www.python.org/')
worksheet.write ('A2', 'https://www.python.org/') # Same.
Note: If you wish to have some other cell data such as a number or a formula you can overwrite
the cell using another call to write_*():
worksheet.write_url('A1', 'https://www.python.org/')
# Overwrite the URL string with a formula. The cell will still be a link.
# Note the use of the default url format for consistency with other links.
url_format = workbook.get_default_url_format()
worksheet.write_formula('A1', '=1+1', url_format)
There are two local URIs supported: internal: and external:. These are used for hyperlinks
to internal worksheet references or external workbook and worksheet references:
# Link to a cell on the current worksheet.
worksheet.write_url('A1', 'internal:Sheet2!A1')
7.10. worksheet.write_url() 51
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Worksheet references are typically of the form Sheet1!A1. You can also link to a worksheet
range using the standard Excel notation: Sheet1!A1:B2.
In external links the workbook and worksheet name must be separated by the # character: ex-
ternal:Workbook.xlsx#Sheet1!A1’.
You can also link to a named range in the target worksheet. For example say you have a named
range called my_name in the workbook c:\temp\foo.xlsx you could link to it as follows:
worksheet.write_url('A14', r'external:c:\temp\foo.xlsx#my_name')
Excel requires that worksheet names containing spaces or non alphanumeric characters are single
quoted as follows ’Sales Data’!A1.
Links to network files are also supported. Network files normally begin with two back slashes as
follows \\NETWORK\etc. In order to generate this in a single or double quoted string you will have
to escape the backslashes, ’\\\\NETWORK\\etc’ or use a raw string r’\\NETWORK\etc’.
Alternatively, you can avoid most of these quoting problems by using forward slashes. These are
translated internally to backslashes:
worksheet.write_url('A14', "external:c:/temp/foo.xlsx")
worksheet.write_url('A15', 'external://NETWORK/share/foo.xlsx')
Note: XlsxWriter will escape the following characters in URLs as required by Excel: \s " < > \
[ ] ‘ ^ { } unless the URL already contains %xx style escapes. In which case it is assumed
that the URL was escaped correctly by the user and will by passed directly to Excel.
Note: Versions of Excel prior to Excel 2015 limited hyperlink links and anchor/locations to 255
characters each. Versions after that support urls up to 2079 characters. XlsxWriter versions >=
1.2.3 support this longer limit by default. However, a lower or user defined limit can be set via the
max_url_length property in the Workbook() constructor.
7.11 worksheet.write_rich_string()
worksheet.write_rich_string('A1',
'This is ',
bold, 'bold',
' and this is ',
italic, 'italic')
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.write_rich_string(0, 0, 'This is ', bold, 'bold')
worksheet.write_rich_string('A1', 'This is ', bold, 'bold')
7.11. worksheet.write_rich_string() 53
Creating Excel files with Python and XlsxWriter, Release 1.2.9
# Unformatted string.
'This is an example string'
# In XlsxWriter.
worksheet.write_rich_string('A1',
'This is an ', format, 'example', ' string')
String fragments that don’t have a format are given a default format. So for example when writing
the string “Some bold text” you would use the first example below but it would be equivalent to the
second:
# Some bold format and a default format.
bold = workbook.add_format({'bold': True})
default = workbook.add_format()
# Or more explicitly:
worksheet.write_rich_string('A1',
default, 'Some ',
bold, 'bold',
default, ' text')
If you have formats and segments in a list you can add them like this, using the standard Python
list unpacking syntax:
segments = ['This is ', bold, 'bold', ' and this is ', blue, 'blue']
worksheet.write_rich_string('A9', *segments)
In Excel only the font properties of the format such as font name, style, size, underline, color
and effects are applied to the string fragments in a rich string. Other features such as border,
background, text wrap and alignment must be applied to the cell.
The write_rich_string() method allows you to do this by using the last argument as a cell
format (if it is a format object). The following example centers a rich string in the cell:
bold = workbook.add_format({'bold': True})
center = workbook.add_format({'align': 'center'})
worksheet.write_rich_string('A5',
'Some ',
bold, 'bold text',
' centered',
center)
Note: Excel doesn’t allow the use of two consecutive formats in a rich string or an
empty string fragment. For either of these conditions a warning is raised and the input to
write_rich_string() is ignored.
See also Example: Writing “Rich” strings with multiple formats and Example: Merging Cells with
a Rich String.
7.12 worksheet.write_row()
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.write_row(0, 0, data)
worksheet.write_row('A1', data)
7.12. worksheet.write_row() 55
Creating Excel files with Python and XlsxWriter, Release 1.2.9
7.13 worksheet.write_column()
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.write_column(0, 0, data)
worksheet.write_column('A1', data)
7.14 worksheet.set_row()
The other common use for set_row() is to set the Format for all cells in the row:
cell_format = workbook.add_format({'bold': True})
If you wish to set the format of a row without changing the height you can pass None as the height
parameter or use the default row height of 15:
worksheet.set_row(1, None, cell_format)
worksheet.set_row(1, 15, cell_format) # Same as above.
The cell_format parameter will be applied to any cells in the row that don’t have a format. As
with Excel it is overridden by an explicit cell format. For example:
worksheet.set_row(0, None, format1) # Row 1 has format1.
# Or use defaults for other properties and set the options only.
worksheet.set_row(0, None, None, {'hidden': True})
The ’hidden’ option is used to hide a row. This can be used, for example, to hide intermediary
steps in a complicated calculation:
worksheet.set_row(0, 20, cell_format, {'hidden': True})
The ’level’ parameter is used to set the outline level of the row. Outlines are described in
Working with Outlines and Grouping. Adjacent rows with the same outline level are grouped
together into a single outline.
The following example sets an outline level of 1 for some rows:
7.14. worksheet.set_row() 57
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Excel allows up to 7 outline levels. The ’level’ parameter should be in the range 0 <= level
<= 7.
The ’hidden’ parameter can also be used to hide collapsed outlined rows when used in con-
junction with the ’level’ parameter:
worksheet.set_row(1, None, None, {'hidden': 1, 'level': 1})
worksheet.set_row(2, None, None, {'hidden': 1, 'level': 1})
The ’collapsed’ parameter is used in collapsed outlines to indicate which row has the collapsed
’+’ symbol:
worksheet.set_row(3, None, None, {'collapsed': 1})
7.15 worksheet.set_column()
If set_column() is applied to a single column the value of first_col and last_col should
be the same:
worksheet.set_column(1, 1, 30) # Width of column B set to 30.
It is also possible, and generally clearer, to specify a column range using the form of A1 notation
used for columns. See Working with Cell Notation for more details.
Examples:
Ranges cannot overlap. Each unique contiguous range should be specified separately:
# This won’t work. worksheet.set_column(‘A:D’, 50) worksheet.set_column(‘C:C’, 10)
# It needs to be split into non-overlapping regions. worksheet.set_column(‘A:B’, 50)
worksheet.set_column(‘C:C’, 10) worksheet.set_column(‘D:E’, 50)
The width parameter sets the column width in the same units used by Excel which is: the number
of characters in the default font. The default width is 8.43 in the default font of Calibri 11. The actual
relationship between a string width and a column width in Excel is complex. See the following
explanation of column widths from the Microsoft support documentation for more details.
There is no way to specify “AutoFit” for a column in the Excel file format. This feature is only
available at runtime from within Excel. It is possible to simulate “AutoFit” in your application by
tracking the maximum width of the data in the column as your write it and then adjusting the
column width at the end.
As usual the cell_format Format parameter is optional. If you wish to set the format without
changing the width you can pass None as the width parameter:
cell_format = workbook.add_format({'bold': True})
The cell_format parameter will be applied to any cells in the column that don’t have a format.
For example:
worksheet.set_column('A:A', None, format1) # Col 1 has format1.
7.15. worksheet.set_column() 59
Creating Excel files with Python and XlsxWriter, Release 1.2.9
# Or use defaults for other properties and set the options only.
worksheet.set_column('E:E', None, None, {'hidden': 1})
The ’hidden’ option is used to hide a column. This can be used, for example, to hide interme-
diary steps in a complicated calculation:
worksheet.set_column('D:D', 20, cell_format, {'hidden': 1})
The ’level’ parameter is used to set the outline level of the column. Outlines are described in
Working with Outlines and Grouping. Adjacent columns with the same outline level are grouped
together into a single outline.
The following example sets an outline level of 1 for columns B to G:
worksheet.set_column('B:G', None, None, {'level': 1})
Excel allows up to 7 outline levels. The ’level’ parameter should be in the range 0 <= level
<= 7.
The ’hidden’ parameter can also be used to hide collapsed outlined columns when used in
conjunction with the ’level’ parameter:
worksheet.set_column('B:G', None, None, {'hidden': 1, 'level': 1})
The ’collapsed’ parameter is used in collapsed outlines to indicate which column has the
collapsed ’+’ symbol:
worksheet.set_column('H:H', None, None, {'collapsed': 1})
7.16 worksheet.insert_image()
worksheet.insert_image('B2', 'python.png')
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.insert_image(1, 1, 'python.png')
worksheet.insert_image('B2', 'python.png')
The insert_image() method takes optional parameters in a dictionary to position and scale the
image. The available parameters with their default values are:
{
'x_offset': 0,
'y_offset': 0,
'x_scale': 1,
'y_scale': 1,
'object_position': 2,
'image_data': None,
7.16. worksheet.insert_image() 61
Creating Excel files with Python and XlsxWriter, Release 1.2.9
'url': None,
'tip': None,
}
The offsets can be greater than the width or height of the underlying cell. This can be occasionally
useful if you wish to align two or more images relative to the same cell.
The x_scale and y_scale parameters can be used to scale the image horizontally and verti-
cally:
worksheet.insert_image('B3', 'python.png', {'x_scale': 0.5, 'y_scale': 0.5})
The url parameter can used to add a hyperlink/url to the image. The tip parameter gives an
optional mouseover tooltip for images with hyperlinks:
worksheet.insert_image('B4', 'python.png', {'url': 'https://python.org'})
When using the image_data parameter a filename must still be passed to insert_image()
since it is required by Excel. In the previous example the filename is extracted from the URL
string. See also Example: Inserting images from a URL or byte stream into a worksheet.
The object_position parameter can be used to control the object positioning of the image:
worksheet.insert_image('B3', 'python.png', {'object_position': 1})
Note:
• BMP images are only supported for backward compatibility. In general it is best to avoid
BMP images since they aren’t compressed. If used, BMP images must be 24 bit, true color,
bitmaps.
• EMF images can have very small differences in width and height when compared to Excel
files. Despite a lot of effort and testing it wasn’t possible to match exactly Excel’s calculations
for handling the dimensions of EMF files. However, the differences are small (< 1%) and in
general aren’t visible.
7.17 worksheet.insert_chart()
7.17. worksheet.insert_chart() 63
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Note: A chart can only be inserted into a worksheet once. If several similar charts are required
then each one must be created separately with add_chart().
See The Chart Class, Working with Charts and Chart Examples.
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.insert_chart(4, 1, chart)
worksheet.insert_chart('B5', chart)
The x_scale and y_scale parameters can be used to scale the chart horizontally and vertically:
worksheet.insert_chart('B5', chart, {'x_scale': 0.5, 'y_scale': 0.5})
These properties can also be set via the Chart set_size() method.
The object_position parameter can be used to control the object positioning of the image:
7.18 worksheet.insert_textbox()
7.18. worksheet.insert_textbox() 65
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.insert_textbox(1, 1, 'Some text')
worksheet.insert_textbox('B2', 'Some text')
# Formatting
line
border
fill
gradient
font
align
text_rotation
# Links
textlink
url
tip
These options are explained in more detail in the Working with Textboxes section.
See also Example: Insert Textboxes into a Worksheet.
See Working with Object Positioning for more detailed information about the positioning and scal-
ing of images within a worksheet.
7.19 worksheet.insert_button()
7.19. worksheet.insert_button() 67
Creating Excel files with Python and XlsxWriter, Release 1.2.9
See Working with VBA Macros and Example: Adding a VBA macro to a Workbook for more
details.
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.insert_button(2, 1, {'macro': 'say_hello',
'caption': 'Press Me'})
'y_scale': 1,
}
The macro option is used to set the macro that the button will invoke when the user clicks on it.
The macro should be included using the Workbook add_vba_project() method shown above.
The caption is used to set the caption on the button. The default is Button n where n is the
button number.
The default button width is 64 pixels which is the width of a default cell and the default button
height is 20 pixels which is the height of a default cell.
The offset and scale options are the same as for insert_chart(), see above.
7.20 worksheet.data_validation()
7.20. worksheet.data_validation() 69
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The data validation can be applied to a single cell or a range of cells. As usual you can use A1 or
Row/Column notation, see Working with Cell Notation:
worksheet.data_validation(1, 1, {'validate': 'list',
'source': ['open', 'high', 'close']})
With Row/Column notation you must specify all four cells in the range: (first_row,
first_col, last_row, last_col). If you need to refer to a single cell set the last_ val-
ues equal to the first_ values. With A1 notation you can refer to a single cell or a range of cells:
worksheet.data_validation(0, 0, 4, 1, {...})
worksheet.data_validation('B1', {...})
worksheet.data_validation('C1:E5', {...})
7.21 worksheet.conditional_format()
7.21. worksheet.conditional_format() 71
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The conditional format can be applied to a single cell or a range of cells. As usual you can use A1
or Row/Column notation, see Working with Cell Notation:
worksheet.conditional_format(0, 0, 2, 1, {'type': 'cell',
'criteria': '>=',
'value': 50,
'format': format1})
With Row/Column notation you must specify all four cells in the range: (first_row,
first_col, last_row, last_col). If you need to refer to a single cell set the last_ val-
ues equal to the first_ values. With A1 notation you can refer to a single cell or a range of cells:
worksheet.conditional_format(0, 0, 4, 1, {...})
worksheet.conditional_format('B1', {...})
worksheet.conditional_format('C1:E5', {...})
which are described in detail in a separate section: Working with Conditional Formatting. See also
Example: Conditional Formatting.
7.22 worksheet.add_table()
This method contains a lot of parameters and is described in Working with Worksheet Tables.
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.add_table(2, 1, 6, 5, { ... })
worksheet.add_table('B3:F7', { ... })
7.23 worksheet.add_sparkline()
Parameters
7.22. worksheet.add_table() 73
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Sparklines are small charts that fit in a single cell and are used to show trends in data.
The add_sparkline() worksheet method is used to add sparklines to a cell or a range of cells:
worksheet.add_sparkline('F1', {'range': 'A1:E1'})
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.add_sparkline(0, 5, {'range': 'A1:E1'})
worksheet.add_sparkline('F1', {'range': 'A1:E1'})
Note: Sparklines are a feature of Excel 2010+ only. You can write them to an XLSX file that can
be read by Excel 2007 but they won’t be displayed.
7.24 worksheet.write_comment()
7.24. worksheet.write_comment() 75
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.write_comment(0, 0, 'This is a comment')
worksheet.write_comment('A1', 'This is a comment')
Most of these options are quite specific and in general the default comment behavior will be all
that you need. However, should you need greater control over the format of the cell comment the
following options are available:
author
visible
x_scale
width
y_scale
height
color
font_name
font_size
start_cell
start_row
start_col
x_offset
y_offset
For more details see Working with Cell Comments and Example: Adding Cell Comments to Work-
sheets (Advanced) .
7.25 worksheet.show_comments()
show_comments()
Make any comments in the worksheet visible.
This method is used to make all cell comments visible when a worksheet is opened:
worksheet.show_comments()
Individual comments can be made visible using the visible parameter of the write_comment
method (see above):
worksheet.write_comment('C3', 'Hello', {'visible': True})
If all of the cell comments have been made visible you can hide individual comments as follows:
worksheet.show_comments()
worksheet.write_comment('C3', 'Hello', {'visible': False})
For more details see Working with Cell Comments and Example: Adding Cell Comments to Work-
sheets (Advanced) .
7.26 worksheet.set_comments_author()
set_comments_author(author )
Set the default author of the cell comments.
Parameters author (string) – Comment author.
This method is used to set the default author of all cell comments:
worksheet.set_comments_author('John Smith')
Individual comment authors can be set using the author parameter of the write_comment
method (see above).
If no author is specified the default comment author name is an empty string.
For more details see Working with Cell Comments and Example: Adding Cell Comments to Work-
sheets (Advanced) .
7.25. worksheet.show_comments() 77
Creating Excel files with Python and XlsxWriter, Release 1.2.9
7.27 worksheet.get_name()
get_name()
Retrieve the worksheet name.
The get_name() method is used to retrieve the name of a worksheet. This is something useful
for debugging or logging:
There is no set_name() method. The only safe way to set the worksheet name is via the
add_worksheet() method.
7.28 worksheet.activate()
activate()
Make a worksheet the active, i.e., visible worksheet.
The activate() method is used to specify which worksheet is initially visible in a multi-sheet
workbook:
worksheet1 = workbook.add_worksheet()
worksheet2 = workbook.add_worksheet()
worksheet3 = workbook.add_worksheet()
worksheet3.activate()
More than one worksheet can be selected via the select() method, see below, however only
one worksheet can be active.
The default active worksheet is the first worksheet.
7.29 worksheet.select()
select()
Set a worksheet tab as selected.
The select() method is used to indicate that a worksheet is selected in a multi-sheet workbook:
worksheet1.activate()
worksheet2.select()
worksheet3.select()
A selected worksheet has its tab highlighted. Selecting worksheets is a way of grouping them
together so that, for example, several worksheets could be printed in one go. A worksheet that
has been activated via the activate() method will also appear as selected.
7.30 worksheet.hide()
hide()
Hide the current worksheet.
The hide() method is used to hide a worksheet:
worksheet2.hide()
You may wish to hide a worksheet in order to avoid confusing a user with intermediate data or
calculations.
7.29. worksheet.select() 79
Creating Excel files with Python and XlsxWriter, Release 1.2.9
A hidden worksheet can not be activated or selected so this method is mutually exclusive with the
activate() and select() methods. In addition, since the first worksheet will default to being
the active worksheet, you cannot hide the first worksheet without activating another sheet:
worksheet2.activate()
worksheet1.hide()
7.31 worksheet.set_first_sheet()
set_first_sheet()
Set current worksheet as the first visible sheet tab.
The activate() method determines which worksheet is initially selected. However, if there are
a large number of worksheets the selected worksheet may not appear on the screen. To avoid this
you can select which is the leftmost visible worksheet tab using set_first_sheet():
for in range(1, 21):
workbook.add_worksheet
This method is not required very often. The default value is the first worksheet.
7.32 worksheet.merge_range()
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.merge_range(2, 1, 3, 3, 'Merged Cells', merge_format)
worksheet.merge_range('B3:D4', 'Merged Cells', merge_format)
7.32. worksheet.merge_range() 81
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Note: Merged ranges generally don’t work in XlsxWriter when Workbook() ’con-
stant_memory’ mode is enabled.
7.33 worksheet.autofilter()
7.33. worksheet.autofilter() 83
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Both row-column and A1 style notation are supported. The following are equivalent:
worksheet.autofilter(0, 0, 10, 3)
worksheet.autofilter('A1:D11')
7.34 worksheet.filter_column()
filter_column(col, criteria)
Set the column filter criteria.
Parameters
• col (int) – Filter column (zero-indexed).
The col parameter can either be a zero indexed column number or a string column name:
worksheet.filter_column(2, 'x > 2000')
worksheet.filter_column('C', 'x > 2000')
7.35 worksheet.filter_column_list()
filter_column_list(col, filters)
Set the column filter criteria in Excel 2007 list style.
Parameters
• col (int) – Filter column (zero-indexed).
• filters (list) – List of filter criteria to match.
The filter_column_list() method can be used to represent filters with multiple selected
criteria:
worksheet.filter_column_list('A', ['March', 'April', 'May'])
The col parameter can either be a zero indexed column number or a string column name:
worksheet.filter_column_list(2, ['March', 'April', 'May'])
worksheet.filter_column_list('C', ['March', 'April', 'May'])
It isn’t sufficient to just specify filters. You must also hide any rows that don’t match the filter
condition. See Working with Autofilters for more details.
7.35. worksheet.filter_column_list() 85
Creating Excel files with Python and XlsxWriter, Release 1.2.9
7.36 worksheet.set_selection()
As shown above, both row-column and A1 style notation are supported. See Working with Cell
Notation for more details. The default cell selection is (0, 0), ’A1’.
7.37 worksheet.freeze_panes()
Therefore to freeze the first row of a worksheet it is necessary to specify the split at row 2 (which
is 1 as the zero-based index).
You can set one of the row and col parameters as zero if you do not want either a vertical or
horizontal split.
Examples:
worksheet.freeze_panes(1, 0) # Freeze the first row.
worksheet.freeze_panes('A2') # Same using A1 notation.
worksheet.freeze_panes(0, 1) # Freeze the first column.
worksheet.freeze_panes('B1') # Same using A1 notation.
worksheet.freeze_panes(1, 2) # Freeze first row and first 2 columns.
worksheet.freeze_panes('C2') # Same using A1 notation.
As shown above, both row-column and A1 style notation are supported. See Working with Cell
Notation for more details.
The parameters top_row and left_col are optional. They are used to specify the top-most or
left-most visible row or column in the scrolling region of the panes. For example to freeze the first
row and to have the scrolling region begin at row twenty:
worksheet.freeze_panes(1, 0, 20, 0)
You cannot use A1 notation for the top_row and left_col parameters.
See Example: Freeze Panes and Split Panes for more details.
7.38 worksheet.split_panes()
7.38. worksheet.split_panes() 87
Creating Excel files with Python and XlsxWriter, Release 1.2.9
You can set one of the y and x parameters as zero if you do not want either a vertical or horizontal
split. The parameters top_row and left_col are optional. They are used to specify the top-
most or left-most visible row or column in the bottom-right pane.
Example:
worksheet.split_panes(15, 0) # First row.
worksheet.split_panes(0, 8.43) # First column.
worksheet.split_panes(15, 8.43) # First row and column.
7.39 worksheet.set_zoom()
set_zoom(zoom)
Set the worksheet zoom factor.
Parameters zoom (int) – Worksheet zoom factor.
Set the worksheet zoom factor in the range 10 <= zoom <= 400:
worksheet1.set_zoom(50)
worksheet2.set_zoom(75)
worksheet3.set_zoom(300)
worksheet4.set_zoom(400)
The default zoom factor is 100. It isn’t possible to set the zoom to “Selection” because it is calcu-
lated by Excel at run-time.
Note, set_zoom() does not affect the scale of the printed page. For that you should use
set_print_scale().
7.40 worksheet.right_to_left()
right_to_left()
Display the worksheet cells from right to left for some versions of Excel.
The right_to_left() method is used to change the default direction of the worksheet from
left-to-right, with the A1 cell in the top left, to right-to-left, with the A1 cell in the top right:
worksheet.right_to_left()
This is useful when creating Arabic, Hebrew or other near or far eastern worksheets that use
right-to-left as the default direction.
See also the Format set_reading_order() property to set the direction of the text withing cells
and the Example: Left to Right worksheets and text example program.
7.41 worksheet.hide_zero()
hide_zero()
Hide zero values in worksheet cells.
The hide_zero() method is used to hide any zero values that appear in cells:
worksheet.hide_zero()
7.42 worksheet.set_tab_color()
set_tab_color()
Set the color of the worksheet tab.
Parameters color (string) – The tab color.
The set_tab_color() method is used to change the color of the worksheet tab:
7.41. worksheet.hide_zero() 89
Creating Excel files with Python and XlsxWriter, Release 1.2.9
worksheet1.set_tab_color('red')
worksheet2.set_tab_color('#FF9900') # Orange
The color can be a Html style #RRGGBB string or a limited number named colors, see Working with
Colors.
See Example: Setting Worksheet Tab Colors for more details.
7.43 worksheet.protect()
protect()
Protect elements of a worksheet from modification.
Parameters
• password (string) – A worksheet password.
• options (dict) – A dictionary of worksheet options to protect.
The protect() method is used to protect a worksheet from modification:
worksheet.protect()
The protect() method also has the effect of enabling a cell’s locked and hidden properties if
they have been set. A locked cell cannot be edited and this property is on by default for all cells.
A hidden cell will display the results of a formula but not the formula itself. These properties can
be set using the set_locked() and set_hidden() format methods.
You can optionally add a password to the worksheet protection:
worksheet.protect('abc123')
Passing the empty string ’’ is the same as turning on protection without a password.
You can specify which worksheet elements you wish to protect by passing a dictionary in the
options argument with any or all of the following keys:
# Default values shown.
options = {
'objects': False,
'scenarios': False,
'format_cells': False,
'format_columns': False,
'format_rows': False,
'insert_columns': False,
'insert_rows': False,
'insert_hyperlinks': False,
'delete_columns': False,
'delete_rows': False,
'select_locked_cells': True,
'sort': False,
'autofilter': False,
'pivot_tables': False,
'select_unlocked_cells': True,
}
The default boolean values are shown above. Individual elements can be protected as follows:
worksheet.protect('abc123', {'insert_rows': True})
See also the set_locked() and set_hidden() format methods and Example: Enabling Cell
protection in Worksheets.
Note: Worksheet level passwords in Excel offer very weak protection. They do not encrypt your
data and are very easy to deactivate. Full workbook encryption is not supported by XlsxWriter.
However, it is possible to encrypt an XlsxWriter file using a third party open source tool called
msoffice-crypt. This works for macOS, Linux and Windows:
msoffice-crypt.exe -e -p password clear.xlsx encrypted.xlsx
7.44 worksheet.set_default_row()
set_default_row(height, hide_unused_rows)
Set the default row properties.
Parameters
• height (float) – Default height. Optional, defaults to 15.
• hide_unused_rows (bool) – Hide unused rows. Optional, defaults to
False.
The set_default_row() method is used to set the limited number of default row properties
allowed by Excel which are the default height and the option to hide unused rows. These param-
eters are an optimization used by Excel to set row properties without generating a very large file
with an entry for each row.
To set the default row height:
worksheet.set_default_row(24)
7.44. worksheet.set_default_row() 91
Creating Excel files with Python and XlsxWriter, Release 1.2.9
7.45 worksheet.outline_settings()
The ’visible’ parameter is used to control whether or not outlines are visible. Setting this
parameter to False will cause all outlines on the worksheet to be hidden. They can be un-hidden
in Excel by means of the “Show Outline Symbols” command button. The default setting is True
for visible outlines.
The ’symbols_below’ parameter is used to control whether the row outline symbol will appear
above or below the outline level bar. The default setting is True for symbols to appear below the
outline level bar.
The ’symbols_right’ parameter is used to control whether the column outline symbol will
appear to the left or the right of the outline level bar. The default setting is True for symbols to
appear to the right of the outline level bar.
The ’auto_style’ parameter is used to control whether the automatic outline generator in Ex-
cel uses automatic styles when creating an outline. This has no effect on a file generated by
XlsxWriter but it does have an effect on how the worksheet behaves after it is created. The
default setting is False for “Automatic Styles” to be turned off.
The default settings for all of these parameters correspond to Excel’s default parameters.
The worksheet parameters controlled by outline_settings() are rarely used.
7.46 worksheet.set_vba_name()
set_vba_name(name)
Set the VBA name for the worksheet.
Parameters name (string) – The VBA name for the worksheet.
The set_vba_name() method can be used to set the VBA codename for the worksheet (there
is a similar method for the workbook VBA name). This is sometimes required when a vbaProject
macro included via add_vba_project() refers to the worksheet. The default Excel VBA name
of Sheet1, etc., is used if a user defined name isn’t specified.
See Working with VBA Macros for more details.
7.46. worksheet.set_vba_name() 93
Creating Excel files with Python and XlsxWriter, Release 1.2.9
EIGHT
Page set-up methods affect the way that a worksheet looks to the user or when it is printed. They
control features such as paper size, orientation, page headers and margins and gridlines.
These methods are really just standard worksheet methods. They are documented separately for
the sake of clarity.
8.1 worksheet.set_landscape()
set_landscape()
Set the page orientation as landscape.
This method is used to set the orientation of a worksheet’s printed page to landscape:
worksheet.set_landscape()
8.2 worksheet.set_portrait()
set_portrait()
Set the page orientation as portrait.
This method is used to set the orientation of a worksheet’s printed page to portrait. The default
worksheet orientation is portrait, so you won’t generally need to call this method:
worksheet.set_portrait()
8.3 worksheet.set_page_view()
set_page_view()
Set the page view mode.
This method is used to display the worksheet in “Page View/Layout” mode:
95
Creating Excel files with Python and XlsxWriter, Release 1.2.9
worksheet.set_page_view()
8.4 worksheet.set_paper()
set_paper(index)
Set the paper type.
Parameters index (int) – The Excel paper format index.
This method is used to set the paper format for the printed output of a worksheet. The following
paper styles are available:
Note, it is likely that not all of these paper types will be available to the end user since it will depend
on the paper formats that the user’s printer supports. Therefore, it is best to stick to standard paper
types:
worksheet.set_paper(1) # US Letter
worksheet.set_paper(9) # A4
If you do not specify a paper type the worksheet will print using the printer’s default paper style.
8.5 worksheet.center_horizontally()
center_horizontally()
Center the printed page horizontally.
Center the worksheet data horizontally between the margins on the printed page:
worksheet.center_horizontally()
8.6 worksheet.center_vertically()
center_vertically()
Center the printed page vertically.
Center the worksheet data vertically between the margins on the printed page:
worksheet.center_vertically()
8.7 worksheet.set_margins()
8.5. worksheet.center_horizontally() 97
Creating Excel files with Python and XlsxWriter, Release 1.2.9
8.8 worksheet.set_header()
set_header([header=’‘,] options]])
Set the printed page header caption and options.
Parameters
• header (string) – Header string with Excel control characters.
• options (dict) – Header options.
Headers and footers are generated using a string which is a combination of plain text and control
characters.
The available control character are:
Control Category Description
&L Justification Left
&C Center
&R Right
&P Information Page number
&N Total number of pages
&D Date
&T Time
&F File name
&A Worksheet name
&Z Workbook path
&fontsize Font Font size
&”font,style” Font name and style
&U Single underline
&E Double underline
&S Strikethrough
&X Superscript
&Y Subscript
&[Picture] Images Image placeholder
&G Same as &[Picture]
Text in headers and footers can be justified (aligned) to the left, center and right by prefixing the
text with the control characters &L, &C and &R.
For example:
worksheet.set_header('&LHello')
---------------------------------------------------------------
| |
| Hello |
| |
$worksheet->set_header('&CHello');
---------------------------------------------------------------
| |
| Hello |
| |
$worksheet->set_header('&RHello');
---------------------------------------------------------------
| |
| Hello |
| |
For simple text, if you do not specify any justification the text will be centered. However, you must
prefix the text with &C if you specify a font name or any other formatting:
worksheet.set_header('Hello')
---------------------------------------------------------------
| |
| Hello |
| |
---------------------------------------------------------------
| |
| Ciao Bello Cielo |
| |
The information control characters act as variables that Excel will update as the workbook or
worksheet changes. Times and dates are in the users default format:
worksheet.set_header('&CPage &P of &N')
---------------------------------------------------------------
| |
| Page 1 of 6 |
| |
8.8. worksheet.set_header() 99
Creating Excel files with Python and XlsxWriter, Release 1.2.9
worksheet.set_header('&CUpdated at &T')
---------------------------------------------------------------
| |
| Updated at 12:30 PM |
| |
Images can be inserted using the options shown below. Each image must have a placeholder
in header string using the &[Picture] or &G control characters:
worksheet.set_header('&L&G', {'image_left': 'logo.jpg'})
You can specify the font size of a section of the text by prefixing it with the control character &n
where n is the font size:
worksheet1.set_header('&C&30Hello Big')
worksheet2.set_header('&C&10Hello Small')
You can specify the font of a section of the text by prefixing it with the control sequence
&"font,style" where fontname is a font name such as “Courier New” or “Times New Ro-
man” and style is one of the standard Windows font descriptions: “Regular”, “Italic”, “Bold” or
“Bold Italic”:
worksheet1.set_header('&C&"Courier New,Italic"Hello')
worksheet2.set_header('&C&"Courier New,Bold Italic"Hello')
worksheet3.set_header('&C&"Times New Roman,Regular"Hello')
It is possible to combine all of these features together to create sophisticated headers and footers.
As an aid to setting up complicated headers and footers you can record a page set-up as a macro
in Excel and look at the format strings that VBA produces. Remember however that VBA uses
two double quotes "" to indicate a single double quote. For the last example above the equivalent
VBA code looks like this:
.LeftHeader = ""
.CenterHeader = "&""Times New Roman,Regular""Hello"
.RightHeader = ""
Alternatively you can inspect the header and footer strings in an Excel file by unzipping it and
grepping the XML sub-files. The following shows how to do that using libxml’s xmllint to format the
XML for clarity:
$ unzip myfile.xlsm -d myfile
$ xmllint --format find myfile -name "*.xml" | xargs | egrep "Header|Footer"
<headerFooter scaleWithDoc="0">
<oddHeader>&L&P</oddHeader>
</headerFooter>
Note that in this case you need to unescape the Html. In the above example the header string
would be:
'&L&P'
To include a single literal ampersand & in a header or footer you should use a double ampersand
&&:
worksheet1.set_header('&CCuriouser && Curiouser - Attorneys at Law')
As with the other margins the margin value should be in inches. The default header and footer
margin is 0.3 inch. It can be changed as follows:
worksheet.set_header('&CHello', {'margin': 0.75})
The header and footer margins are independent of, and should not be confused with, the top and
bottom worksheet margins.
The image options must have an accompanying &[Picture] or &G control character in the
header string:
worksheet.set_header('&L&[Picture]&C&[Picture]&R&[Picture]',
{'image_left': 'red.jpg',
'image_center': 'blue.jpg',
'image_right': 'yellow.jpg'})
The image_data_ parameters are used to add an in-memory byte stream in io.BytesIO for-
mat:
image_file = open('logo.jpg', 'rb')
image_data = BytesIO(image_file.read())
worksheet.set_header('&L&G',
{'image_left': 'logo.jpg',
'image_data_left': image_data})
When using the image_data_ parameters a filename must still be passed to to the equivalent
image_ parameter since it is required by Excel. See also insert_image() for details on han-
dling images from byte streams.
Note, Excel does not allow header or footer strings longer than 255 characters, including control
characters. Strings longer than this will not be written and an exception will be thrown.
See also Example: Adding Headers and Footers to Worksheets.
8.9 worksheet.set_footer()
set_footer([footer=’‘,] options]])
Set the printed page footer caption and options.
Parameters
• footer (string) – Footer string with Excel control characters.
• options (dict) – Footer options.
The syntax of the set_footer() method is the same as set_header().
8.10 worksheet.repeat_rows()
repeat_rows(first_row [, last_row ])
Set the number of rows to repeat at the top of each printed page.
Parameters
• first_row (int) – First row of repeat range.
• last_row (int) – Last row of repeat range. Optional.
For large Excel documents it is often desirable to have the first row or rows of the worksheet print
out at the top of each page.
This can be achieved by using the repeat_rows() method. The parameters first_row and
last_row are zero based. The last_row parameter is optional if you only wish to specify one
row:
worksheet1.repeat_rows(0) # Repeat the first row.
worksheet2.repeat_rows(0, 1) # Repeat the first two rows.
8.11 worksheet.repeat_columns()
repeat_columns(first_col [, last_col ])
Set the columns to repeat at the left hand side of each printed page.
Parameters
• first_col (int) – First column of repeat range.
• last_col (int) – Last column of repeat range. Optional.
For large Excel documents it is often desirable to have the first column or columns of the worksheet
print out at the left hand side of each page.
This can be achieved by using the repeat_columns() method. The parameters
first_column and last_column are zero based. The last_column parameter is optional
if you only wish to specify one column. You can also specify the columns using A1 column nota-
tion, see Working with Cell Notation for more details.:
worksheet1.repeat_columns(0) # Repeat the first column.
worksheet2.repeat_columns(0, 1) # Repeat the first two columns.
worksheet3.repeat_columns('A:A') # Repeat the first column.
worksheet4.repeat_columns('A:B') # Repeat the first two columns.
8.12 worksheet.hide_gridlines()
hide_gridlines([option=1 ])
Set the option to hide gridlines on the screen and the printed page.
8.13 worksheet.print_row_col_headers()
print_row_col_headers()
Set the option to print the row and column headers on the printed page.
When you print a worksheet from Excel you get the data selected in the print area. By default
the Excel row and column headers (the row numbers on the left and the column letters at the top)
aren’t printed.
The print_row_col_headers() method sets the printer option to print these headers:
worksheet.print_row_col_headers()
8.14 worksheet.hide_row_col_headers()
hide_row_col_headers()
Set the option to hide the row and column headers in a worksheet.
This method is similar to the print_row_col_headers() except that it hides the row and col-
umn headers on the worksheet:
worksheet.hide_row_col_headers()
8.15 worksheet.print_area()
In order to set a row or column range you must specify the entire range:
worksheet3.print_area('A1:H1048576') # Same as A:H.
8.16 worksheet.print_across()
print_across()
Set the order in which pages are printed.
The print_across method is used to change the default print direction. This is referred to by
Excel as the sheet “page order”:
worksheet.print_across()
The default page order is shown below for a worksheet that extends over 4 pages. The order is
called “down then across”:
[1] [3]
[2] [4]
However, by using the print_across method the print order will be changed to “across then
down”:
[1] [2]
[3] [4]
8.17 worksheet.fit_to_pages()
fit_to_pages(width, height)
Fit the printed area to a specific number of pages both vertically and horizontally.
Parameters
• width (int) – Number of pages horizontally.
• height (int) – Number of pages vertically.
The fit_to_pages() method is used to fit the printed area to a specific number of pages both
vertically and horizontally. If the printed area exceeds the specified number of pages it will be
scaled down to fit. This ensures that the printed area will always appear on the specified number
of pages even if the page size or margins change:
worksheet1.fit_to_pages(1, 1) # Fit to 1x1 pages.
worksheet2.fit_to_pages(2, 1) # Fit to 2x1 pages.
worksheet3.fit_to_pages(1, 2) # Fit to 1x2 pages.
The print area can be defined using the print_area() method as described above.
A common requirement is to fit the printed output to n pages wide but have the height be as long
as necessary. To achieve this set the height to zero:
worksheet1.fit_to_pages(1, 0) # 1 page wide and as long as necessary.
Note: Although it is valid to use both fit_to_pages() and set_print_scale() on the same
worksheet in Excel only allows one of these options to be active at a time. The last method call
made will set the active option.
Note: The fit_to_pages() will override any manual page breaks that are defined in the
worksheet.
Note: When using fit_to_pages() it may also be required to set the printer paper size using
set_paper() or else Excel will default to “US Letter”.
8.18 worksheet.set_start_page()
set_start_page()
Set the start page number when printing.
Parameters start_page (int) – Starting page number.
The set_start_page() method is used to set the number of the starting page when the work-
sheet is printed out:
# Start print from page 2.
worksheet.set_start_page(2)
8.19 worksheet.set_print_scale()
set_print_scale()
Set the scale factor for the printed page.
Parameters scale (int) – Print scale of worksheet to be printed.
Set the scale factor of the printed page. Scale factors in the range 10 <= $scale <= 400 are
valid:
worksheet1.set_print_scale(50)
worksheet2.set_print_scale(75)
worksheet3.set_print_scale(300)
worksheet4.set_print_scale(400)
The default scale factor is 100. Note, set_print_scale() does not affect the scale of the
visible page in Excel. For that you should use set_zoom().
Note also that although it is valid to use both fit_to_pages() and set_print_scale() on
the same worksheet Excel only allows one of these options to be active at a time. The last method
call made will set the active option.
8.20 worksheet.set_h_pagebreaks()
set_h_pagebreaks(breaks)
Set the horizontal page breaks on a worksheet.
Parameters breaks (list) – List of page break rows.
The set_h_pagebreaks() method adds horizontal page breaks to a worksheet. A page break
causes all the data that follows it to be printed on the next page. Horizontal page breaks act
between rows.
The set_h_pagebreaks() method takes a list of one or more page breaks:
worksheet1.set_v_pagebreaks([20])
worksheet2.set_v_pagebreaks([20, 40, 60, 80, 100])
To create a page break between rows 20 and 21 you must specify the break at row 21. However
in zero index notation this is actually row 20. So you can pretend for a small while that you are
using 1 index notation:
worksheet.set_h_pagebreaks([20]) # Break between row 20 and 21.
Note: Note: If you specify the “fit to page” option via the fit_to_pages() method it will override
all manual page breaks.
There is a silent limitation of 1023 horizontal page breaks per worksheet in line with an Excel
internal limitation.
8.21 worksheet.set_v_pagebreaks()
set_v_pagebreaks(breaks)
Set the vertical page breaks on a worksheet.
Parameters breaks (list) – List of page break columns.
The set_v_pagebreaks() method is the same as the above set_h_pagebreaks() method
except it adds page breaks between columns.
NINE
This section describes the methods and properties that are available for formatting cells in Excel.
The properties of a cell that can be formatted include: fonts, colors, patterns, borders, alignment
and number formatting.
Cell formatting is defined through a Format object. Format objects are created by calling the
workbook add_format() method as follows:
109
Creating Excel files with Python and XlsxWriter, Release 1.2.9
There are two ways of setting Format properties: by using the object interface or by setting the
property as a dictionary of key/value pairs in the constructor. For example, a typical use of the
object interface would be as follows:
cell_format = workbook.add_format()
cell_format.set_bold()
cell_format.set_font_color('red')
In general the key/value interface is more flexible and clearer than the object method and is the
recommended method for setting format properties. However, both methods produce the same
result.
Once a Format object has been constructed and its properties have been set it can be passed as
an argument to the worksheet write() methods as follows:
worksheet.write (0, 0, 'Foo', cell_format)
worksheet.write_string(1, 0, 'Bar', cell_format)
worksheet.write_number(2, 0, 3, cell_format)
worksheet.write_blank (3, 0, '', cell_format)
Formats can also be passed to the worksheet set_row() and set_column() methods to define
the default formatting properties for a row or column:
worksheet.set_row(0, 18, cell_format)
worksheet.set_column('A:D', 20, cell_format)
The default Excel 2007+ cell format is Calibri 11 with all other properties off.
In general a format method call without an argument will turn a property on, for example:
cell_format = workbook.add_format()
Since most properties are already off by default it isn’t generally required to turn them off. However,
it is possible if required:
cell_format.set_bold(False) # Turns bold off.
Each unique cell format in an XlsxWriter spreadsheet must have a corresponding Format object. It
isn’t possible to use a Format with a write() method and then redefine it for use at a later stage.
This is because a Format is applied to a cell not in its current state but in its final state. Consider
the following example:
cell_format = workbook.add_format({'bold': True, 'font_color': 'red'})
worksheet.write('A1', 'Cell A1', cell_format)
# Later...
cell_format.set_font_color('green')
worksheet.write('B1', 'Cell B1', cell_format)
Cell A1 is assigned a format which initially has the font set to the color red. However, the color is
subsequently set to green. When Excel displays Cell A1 it will display the final state of the Format
which in this case will be the color green.
The set_num_format() method, shown below, is used to set the number format for numbers:
import xlsxwriter
workbook = xlsxwriter.Workbook('currency_format.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
If the number format you use is the same as one of Excel’s built in number formats then it will have
a number category such as General, Number, Currency, Accounting, Date, Time, Percentage,
Fraction, Scientific, Text, Special or Custom. In the case of the example above the formatted
output shows up as a Number category:
If we wanted it to have a different category, such as Currency, then we would have to match the
number format string with the number format used by Excel. The easiest way to do this is to open
the Number Formatting dialog in Excel and set the format that you want:
Then, while still in the dialog, change to Custom. The format displayed is the format used by Excel.
If we put the format that we found (’[$$-409]#,##0.00’) into our previous example and rerun
it we will get a number format in the Currency category:
import xlsxwriter
workbook = xlsxwriter.Workbook('currency_format.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
The same process can be used to find format strings for Date or Accountancy formats. However,
you also need to be aware of the OS settings Excel uses for number separators such as the
“grouping/thousands” separator and the “decimal” point. See the next section for details.
As shown in the previous section the set_num_format() method is used to set the number
format for Xlsxwriter formats. A common use case is to set a number format with a “group-
ing/thousands” separator and a “decimal” point:
import xlsxwriter
workbook = xlsxwriter.Workbook('number_format.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
In the US locale (and some others) where the number “grouping/thousands” separator is ”,” and
the “decimal” point is ”.” this would be shown in Excel as:
In other locales these values may be reversed or different. They are generally set in the “Region”
settings of Windows or Mac OS. Excel handles this by storing the number format in the file format
in the US locale, in this case #,##0.00, but renders it according to the regional settings of the
host OS. For example, here is the same, unmodified, output file shown above in a German locale:
And here is the same file in a Russian locale. Note the use of a space as the “grouping/thousands”
separator:
In order to replicate Excel’s behavior all XlsxWriter programs should use US locale formatting
which will then be rendered in the settings of your host OS.
The following table shows the Excel format categories, the formatting properties that can be ap-
plied and the equivalent object method:
The format properties and methods are explained in the following sections.
9.7 format.set_font_name()
set_font_name(fontname)
Set the font used in the cell.
Parameters fontname (string) – Cell font.
Specify the font used used in the cell format:
cell_format.set_font_name('Times New Roman')
Excel can only display fonts that are installed on the system that it is running on. Therefore it is
best to use the fonts that come as standard such as ‘Calibri’, ‘Times New Roman’ and ‘Courier
New’.
9.8 format.set_font_size()
set_font_size(size)
Set the size of the font used in the cell.
Parameters size (int) – The cell font size.
Set the font size of the cell format:
cell_format = workbook.add_format()
cell_format.set_font_size(30)
Excel adjusts the height of a row to accommodate the largest font size in the row. You can also
explicitly specify the height of a row using the set_row() worksheet method.
9.9 format.set_font_color()
set_font_color(color )
Set the color of the font used in the cell.
Parameters color (string) – The cell font color.
Set the font color:
cell_format = workbook.add_format()
cell_format.set_font_color('red')
The color can be a Html style #RRGGBB string or a limited number of named colors, see Working
with Colors.
Note: The set_font_color() method is used to set the color of the font in a cell. To set the
color of a cell use the set_bg_color() and set_pattern() methods.
9.10 format.set_bold()
set_bold()
Turn on bold for the format font.
Set the bold property of the font:
cell_format.set_bold()
9.11 format.set_italic()
set_italic()
Turn on italic for the format font.
Set the italic property of the font:
cell_format.set_italic()
9.12 format.set_underline()
set_underline()
Turn on underline for the format.
Parameters style (int) – Underline style.
Set the underline property of the format:
cell_format.set_underline()
9.13 format.set_font_strikeout()
set_font_strikeout()
Set the strikeout property of the font.
9.14 format.set_font_script()
set_font_script()
Set the superscript/subscript property of the font.
The available options are:
• 1 = Superscript
• 2 = Subscript
This property is generally only useful when used in conjunction with write_rich_string().
9.15 format.set_num_format()
set_num_format(format_string)
Set the number format for a cell.
Parameters format_string (string) – The cell number format.
This method is used to define the numerical format of a number in Excel. It controls whether a
number is displayed as an integer, a floating point number, a date, a currency value or some other
user defined format.
The numerical format of a cell can be specified by using a format string or an index to one of
Excel’s built-in formats:
cell_format1 = workbook.add_format()
cell_format2 = workbook.add_format()
Format strings can control any aspect of number formatting allowed by Excel:
cell_format01.set_num_format('0.000')
worksheet.write(1, 0, 3.1415926, cell_format01) # -> 3.142
cell_format02.set_num_format('#,##0')
worksheet.write(2, 0, 1234.56, cell_format02) # -> 1,235
cell_format03.set_num_format('#,##0.00')
worksheet.write(3, 0, 1234.56, cell_format03) # -> 1,234.56
cell_format04.set_num_format('0.00')
worksheet.write(4, 0, 49.99, cell_format04) # -> 49.99
cell_format05.set_num_format('mm/dd/yy')
worksheet.write(5, 0, 36892.521, cell_format05) # -> 01/01/01
cell_format06.set_num_format('mmm d yyyy')
worksheet.write(6, 0, 36892.521, cell_format06) # -> Jan 1 2001
# Zip code.
cell_format11.set_num_format('00000')
worksheet.write(13, 0, 1209, cell_format11)
The number system used for dates is described in Working with Dates and Time.
The color format should have one of the following values:
[Black] [Blue] [Cyan] [Green] [Magenta] [Red] [White] [Yellow]
The format indexes and the equivalent strings are shown in the following table:
Numeric formats 23 to 36 are not documented by Microsoft and may differ in international versions.
The listed date and currency formats may also vary depending on system settings.
The dollar sign in the above format usually appears as the defined local currency symbol. To get
more locale specific formatting see see Number Format Categories, above.
9.16 format.set_locked()
set_locked(state)
Set the cell locked state.
unlocked = workbook.add_format()
unlocked.set_locked(False)
9.17 format.set_hidden()
set_hidden()
Hide formulas in a cell.
This property is used to hide a formula while still displaying its result. This is generally used to hide
complex calculations from end users who are only interested in the result. It only has an effect if
the worksheet has been protected using the worksheet protect() method:
hidden = workbook.add_format()
hidden.set_hidden()
9.18 format.set_align()
set_align(alignment)
Set the alignment for data in the cell.
Parameters alignment (string) – The vertical and or horizontal alignment direc-
tion.
This method is used to set the horizontal and vertical text alignment within a cell. The following
are the available horizontal alignments:
Horizontal alignment
left
center
right
fill
justify
center_across
distributed
The following are the available vertical alignments:
Vertical alignment
top
vcenter
bottom
vjustify
vdistributed
As in Excel, vertical and horizontal alignments can be combined:
cell_format = workbook.add_format()
cell_format.set_align('center')
cell_format.set_align('vcenter')
worksheet.set_row(0, 70)
worksheet.set_column('A:A', 30)
Text can be aligned across two or more adjacent cells using the ’center_across’ property.
However, for genuine merged cells it is better to use the merge_range() worksheet method.
The ’vjustify’ (vertical justify) option can be used to provide automatic text wrapping in a cell.
The height of the cell will be adjusted to accommodate the wrapped text. To specify where the text
wraps use the set_text_wrap() method.
9.19 format.set_center_across()
set_center_across()
Center text across adjacent cells.
Text can be aligned across two or more adjacent cells using the set_center_across() method.
This is an alias for the set_align(’center_across’) method call.
Only one cell should contain the text, the other cells should be blank:
cell_format = workbook.add_format()
cell_format.set_center_across()
For actual merged cells it is better to use the merge_range() worksheet method.
9.20 format.set_text_wrap()
set_text_wrap()
Wrap text in a cell.
Turn text wrapping on for text in a cell:
cell_format = workbook.add_format()
cell_format.set_text_wrap()
If you wish to control where the text is wrapped you can add newline characters to the string:
worksheet.write(2, 0, "It's\na bum\nwrap", cell_format)
Excel will adjust the height of the row to accommodate the wrapped text. A similar effect can be
obtained without newlines using the set_align(’vjustify’) method.
9.21 format.set_rotation()
set_rotation(angle)
Set the rotation of the text in a cell.
Parameters angle (int) – Rotation angle in the range -90 to 90 and 270.
Set the rotation of the text in a cell. The rotation can be any angle in the range -90 to 90 degrees:
cell_format = workbook.add_format()
cell_format.set_rotation(30)
The angle 270 is also supported. This indicates text where the letters run from top to bottom.
9.22 format.set_reading_order()
set_reading_order(direction)
Set the reading order for the text in a cell.
Parameters direction (int) – Reading order direction.
Set the text reading direction. This is useful when creating Arabic, Hebrew or other near or far east-
ern worksheets. It can be used in conjunction with the Worksheet right_to_left() method to
also change the direction of the worksheet.
9.23 format.set_indent()
set_indent(level)
Set the cell text indentation level.
Parameters level (int) – Indentation level.
This method can be used to indent text in a cell. The argument, which should be an integer, is
taken as the level of indentation:
cell_format1 = workbook.add_format()
cell_format2 = workbook.add_format()
cell_format1.set_indent(1)
cell_format2.set_indent(2)
Indentation is a horizontal alignment property. It will override any other horizontal properties but it
can be used in conjunction with vertical properties.
9.24 format.set_shrink()
set_shrink()
Turn on the text “shrink to fit” for a cell.
This method can be used to shrink text so that it fits in a cell:
cell_format = workbook.add_format()
cell_format.set_shrink()
9.25 format.set_text_justlast()
set_text_justlast()
Turn on the justify last text property.
Only applies to Far Eastern versions of Excel.
9.26 format.set_pattern()
set_pattern(index)
Parameters index (int) – Pattern index. 0 - 18.
Set the background pattern of a cell.
The most common pattern is 1 which is a solid fill of the background color.
9.27 format.set_bg_color()
set_bg_color(color )
Set the color of the background pattern in a cell.
Parameters color (string) – The cell font color.
The set_bg_color() method can be used to set the background color of a pattern. Patterns are
defined via the set_pattern() method. If a pattern hasn’t been defined then a solid fill pattern
is used as the default.
Here is an example of how to set up a solid fill in a cell:
cell_format = workbook.add_format()
The color can be a Html style #RRGGBB string or a limited number of named colors, see Working
with Colors.
9.28 format.set_fg_color()
set_fg_color(color )
Set the color of the foreground pattern in a cell.
Parameters color (string) – The cell font color.
The set_fg_color() method can be used to set the foreground color of a pattern.
The color can be a Html style #RRGGBB string or a limited number of named colors, see Working
with Colors.
9.29 format.set_border()
set_border(style)
Set the cell border style.
Parameters style (int) – Border style index. Default is 1.
Individual border elements can be configured using the following methods with the same parame-
ters:
• set_bottom()
• set_top()
• set_left()
• set_right()
A cell border is comprised of a border on the bottom, top, left and right. These can be set to the
same value using set_border() or individually using the relevant method calls shown above.
The following shows the border styles sorted by XlsxWriter index number:
Index Name Weight Style
0 None 0
1 Continuous 1 -----------
2 Continuous 2 -----------
3 Dash 1 - - - - - -
4 Dot 1 . . . . . .
5 Continuous 3 -----------
6 Double 3 ===========
7 Continuous 0 -----------
8 Dash 2 - - - - - -
9 Dash Dot 1 - . - . - .
10 Dash Dot 2 - . - . - .
11 Dash Dot Dot 1 - . . - . .
12 Dash Dot Dot 2 - . . - . .
13 SlantDash Dot 2 / - . / - .
The following shows the borders in the order shown in the Excel Dialog:
Index Style Index Style
0 None 12 - . . - . .
7 ----------- 13 / - . / - .
4 . . . . . . 10 - . - . - .
11 - . . - . . 8 - - - - - -
9 - . - . - . 2 -----------
3 - - - - - - 5 -----------
1 ----------- 6 ===========
9.30 format.set_bottom()
set_bottom(style)
Set the cell bottom border style.
Parameters style (int) – Border style index. Default is 1.
Set the cell bottom border style. See set_border() for details on the border styles.
9.31 format.set_top()
set_top(style)
Set the cell top border style.
Parameters style (int) – Border style index. Default is 1.
Set the cell top border style. See set_border() for details on the border styles.
9.32 format.set_left()
set_left(style)
Set the cell left border style.
Parameters style (int) – Border style index. Default is 1.
Set the cell left border style. See set_border() for details on the border styles.
9.33 format.set_right()
set_right(style)
Set the cell right border style.
Parameters style (int) – Border style index. Default is 1.
Set the cell right border style. See set_border() for details on the border styles.
9.34 format.set_border_color()
set_border_color(color )
Set the color of the cell border.
Parameters color (string) – The cell border color.
Individual border elements can be configured using the following methods with the same parame-
ters:
• set_bottom_color()
• set_top_color()
• set_left_color()
• set_right_color()
Set the color of the cell borders. A cell border is comprised of a border on the bottom, top, left and
right. These can be set to the same color using set_border_color() or individually using the
relevant method calls shown above.
The color can be a Html style #RRGGBB string or a limited number of named colors, see Working
with Colors.
9.35 format.set_bottom_color()
set_bottom_color(color )
Set the color of the bottom cell border.
Parameters color (string) – The cell border color.
9.36 format.set_top_color()
set_top_color(color )
Set the color of the top cell border.
Parameters color (string) – The cell border color.
See set_border_color() for details on the border colors.
9.37 format.set_left_color()
set_left_color(color )
Set the color of the left cell border.
Parameters color (string) – The cell border color.
See set_border_color() for details on the border colors.
9.38 format.set_right_color()
set_right_color(color )
Set the color of the right cell border.
Parameters color (string) – The cell border color.
See set_border_color() for details on the border colors.
9.39 format.set_diag_border()
set_diag_border(style)
Set the diagonal cell border style.
Parameters style (int) – Border style index. Default is 1.
Set the style for a diagonal border. The style is the same as those used in set_border().
See Example: Diagonal borders in cells.
9.40 format.set_diag_type()
set_diag_type(style)
Set the diagonal cell border type.
Parameters style (int) – Border type, 1-3. No default.
Set the type of the diagonal border. The style should be one of the following values:
1. From bottom left to top right.
2. From top left to bottom right.
3. Same as type 1 and 2 combined.
9.41 format.set_diag_color()
set_diag_color(color )
Set the color of the diagonal cell border.
TEN
The Chart module is a base class for modules that implement charts in XlsxWriter. The informa-
tion in this section is applicable to all of the available chart subclasses, such as Area, Bar, Column,
Doughnut, Line, Pie, Scatter, Stock and Radar.
A chart object is created via the Workbook add_chart() method where the chart type is speci-
fied:
chart = workbook.add_chart({'type': 'column'})
It is then inserted into a worksheet as an embedded chart using the insert_chart() Worksheet
method:
worksheet.insert_chart('A7', chart)
import xlsxwriter
workbook = xlsxwriter.Workbook('chart.xlsx')
worksheet = workbook.add_worksheet()
worksheet.write_column('A1', data[0])
worksheet.write_column('B1', data[1])
worksheet.write_column('C1', data[2])
141
Creating Excel files with Python and XlsxWriter, Release 1.2.9
# Configure the chart. In simplest case we add one or more data series.
chart.add_series({'values': '=Sheet1!$A$1:$A$5'})
chart.add_series({'values': '=Sheet1!$B$1:$B$5'})
chart.add_series({'values': '=Sheet1!$C$1:$C$5'})
workbook.close()
bar
stacked
percent_stacked
column
stacked
percent_stacked
scatter
straight_with_markers
straight
smooth_with_markers
smooth
line
stacked
percent_stacked
radar
with_markers
filled
Methods that are common to all chart types are documented below. See Working with Charts for
chart specific information.
10.1 chart.add_series()
add_series(options)
Add a data series to a chart.
Parameters options (dict) – A dictionary of chart series options.
In Excel a chart series is a collection of information that defines which data is plotted such as
values, axis labels and formatting.
For an XlsxWriter chart object the add_series() method is used to set the properties for a
series:
chart.add_series({
'categories': '=Sheet1!$A$1:$A$5',
'values': '=Sheet1!$B$1:$B$5',
'line': {'color': 'red'},
})
As shown above the categories and values can take either a range formula such as
=Sheet1!$A$2:$A$7 or, more usefully when generating the range programmatically, a list with
zero indexed row/column values.
The series options that can be set are:
• values: This is the most important property of a series and is the only mandatory option for
every chart object. This option links the chart with the worksheet data that it displays. The
data range can be set using a formula as shown in the first example above or using a list of
values as shown in the second example.
• categories: This sets the chart category labels. The category is more or less the same
as the X axis. In most chart types the categories property is optional and the chart will
just assume a sequential series from 1..n.
• name: Set the name for the series. The name is displayed in the formula bar. For non-
Pie/Doughnut charts it is also displayed in the legend. The name property is optional and
if it isn’t supplied it will default to Series 1..n. The name can also be a formula such as
=Sheet1!$A$1 or a list with a sheetname, row and column such as [’Sheet1’, 0, 0].
• line: Set the properties of the series line type such as color and width. See Chart format-
ting: Line.
• border: Set the border properties of the series such as color and style. See Chart format-
ting: Border .
• fill: Set the solid fill properties of the series such as color. See Chart formatting: Solid
Fill.
• pattern: Set the pattern fill properties of the series. See Chart formatting: Pattern Fill.
• gradient: Set the gradient fill properties of the series. See Chart formatting: Gradient Fill.
• marker: Set the properties of the series marker such as style and color. See Chart series
option: Marker .
• trendline: Set the properties of the series trendline such as linear, polynomial and moving
average types. See Chart series option: Trendline.
• smooth: Set the smooth property of a line series.
• y_error_bars: Set vertical error bounds for a chart series. See Chart series option: Error
Bars.
• x_error_bars: Set horizontal error bounds for a chart series. See Chart series option:
Error Bars.
• data_labels: Set data labels for the series. See Chart series option: Data Labels.
• points: Set properties for individual points in a series. See Chart series option: Points.
• invert_if_negative: Invert the fill color for negative values. Usually only applicable to
column and bar charts.
• overlap: Set the overlap between series in a Bar/Column chart. The range is +/- 100. The
default is 0:
chart.add_series({
'categories': '=Sheet1!$A$1:$A$5',
'values': '=Sheet1!$B$1:$B$5',
'overlap': 10,
})
Note, it is only necessary to apply the overlap property to one series in the chart.
• gap: Set the gap between series in a Bar/Column chart. The range is 0 to 500. The default
is 150:
chart.add_series({
'categories': '=Sheet1!$A$1:$A$5',
'values': '=Sheet1!$B$1:$B$5',
'gap': 200,
})
Note, it is only necessary to apply the gap property to one series in the chart.
More than one series can be added to a chart. In fact, some chart types such as stock require
it. The series numbering and order in the Excel chart will be the same as the order in which they
are added in XlsxWriter.
It is also possible to specify non-contiguous ranges:
chart.add_series({
'categories': '=(Sheet1!$A$1:$A$9,Sheet1!$A$14:$A$25)',
'values': '=(Sheet1!$B$1:$B$9,Sheet1!$B$14:$B$25)',
})
10.2 chart.set_x_axis()
set_x_axis(options)
Set the chart X axis options.
Parameters options (dict) – A dictionary of axis options.
The set_x_axis() method is used to set properties of the X axis:
chart.set_x_axis({
'name': 'Earnings per Quarter',
'name_font': {'size': 14, 'bold': True},
'num_font': {'italic': True },
})
These options are explained below. Some properties are only applicable to value, category or
date axes (this is noted in each case). See Chart Value and Category Axes for an explanation of
Excel’s distinction between the axis types.
• name: Set the name (also known as title or caption) for the axis. The name is displayed
below the X axis. (Applicable to category, date and value axes.):
chart.set_x_axis({'name': 'Earnings per Quarter'})
See the Chart Fonts section for more details on font properties.
• name_layout: Set the (x, y) position of the axis caption in chart relative units. (Applica-
ble to category, date and value axes.):
chart.set_x_axis({
'name': 'X axis',
'name_layout': {
'x': 0.34,
'y': 0.85,
}
})
See the Chart Fonts section for more details on font properties.
• num_format: Set the number format for the axis. (Applicable to category, date and value
axes.):
chart.set_x_axis({'num_format': '#,##0.00'})
chart.set_y_axis({'num_format': '0.00%'})
The number format is similar to the Worksheet Cell Format num_format apart from the fact
that a format index cannot be used. An explicit format string must be used as shown above.
See set_num_format() for more information.
• line: Set the properties of the axis line type such as color and width. See Chart formatting:
Line:
chart.set_x_axis({'line': {'none': True}})
• fill: Set the solid fill properties of the axis such as color. See Chart formatting: Solid Fill.
Note, in Excel the axis fill is applied to the area of the numbers of the axis and not to the
area of the axis bounding box. That background is set from the chartarea fill.
• pattern: Set the pattern fill properties of the axis. See Chart formatting: Pattern Fill.
• gradient: Set the gradient fill properties of the axis. See Chart formatting: Gradient Fill.
• min: Set the minimum value for the axis range. (Applicable to value and date axes only.):
chart.set_x_axis({'min': 3, 'max': 6})
• max: Set the maximum value for the axis range. (Applicable to value and date axes only.)
• minor_unit: Set the increment of the minor units in the axis range. (Applicable to value
and date axes only.):
chart.set_x_axis({'minor_unit': 0.4, 'major_unit': 2})
• major_unit: Set the increment of the major units in the axis range. (Applicable to value
and date axes only.)
• interval_unit: Set the interval unit for a category axis. Should be an integer value.
(Applicable to category axes only.):
chart.set_x_axis({'interval_unit': 5})
• interval_tick: Set the tick interval for a category axis. Should be an integer value.
(Applicable to category axes only.):
chart.set_x_axis({'interval_tick': 2})
• crossing: Set the position where the y axis will cross the x axis. (Applicable to all axes.)
The crossing value can either be the string ’max’ to set the crossing at the maximum
axis value or a numeric value:
chart.set_x_axis({'crossing': 3})
chart.set_y_axis({'crossing': 'max'})
For category axes the numeric value must be an integer to represent the category num-
ber that the axis crosses at. For value and date axes it can have any value associated with
the axis. See also Chart Value and Category Axes.
If crossing is omitted (the default) the crossing will be set automatically by Excel based on
the chart data.
• position_axis: Position the axis on or between the axis tick marks. (Applicable to cate-
gory axes only.)
There are two allowable values on_tick and between:
chart.set_x_axis({'position_axis': 'on_tick'})
chart.set_x_axis({'position_axis': 'between'})
• reverse: Reverse the order of the axis categories or values. (Applicable to category, date
and value axes.):
chart.set_x_axis({'reverse': True})
• log_base: Set the log base of the axis range. (Applicable to value axes only.):
chart.set_y_axis({'log_base': 10})
• label_position: Set the “Axis labels” position for the axis. The following positions are
available:
next_to (the default)
high
low
none
For example:
chart.set_x_axis({'label_position': 'high'})
chart.set_y_axis({'label_position': 'low'})
• label_align: Align the “Axis labels” the axis. (Applicable to category axes only.)
The following Excel alignments are available:
center (the default)
right
left
For example:
chart.set_x_axis({'label_align': 'left'})
• major_gridlines: Configure the major gridlines for the axis. The available properties are:
visible
line
For example:
chart.set_x_axis({
'major_gridlines': {
'visible': True,
'line': {'width': 1.25, 'dash_type': 'dash'}
},
})
The visible property is usually on for the X axis but it depends on the type of chart.
The line property sets the gridline properties such as color and width. See Chart Format-
ting.
• minor_gridlines: This takes the same options as major_gridlines above.
The minor gridline visible property is off by default for all chart types.
• visible: Configure the visibility of the axis:
chart.set_y_axis({'visible': False})
This option also allows you to set max and min values for a category axis which isn’t allowed
by Excel for non-date category axes.
See Date Category Axes for more details.
• text_axis: This option is used to treat a category axis explicitly as a Text Axis. (Applicable
to category axes only.):
chart.set_x_axis({'text_axis': True})
• minor_unit_type: For date_axis axes, see above, this option is used to set the type of
the minor units. (Applicable to date category axes only.):
chart.set_x_axis({
'date_axis': True,
'minor_unit': 4,
'minor_unit_type': 'months',
})
• major_unit_type: Same as minor_unit_type, see above, but for major axes unit
types.
• minor_tick_mark: Set the axis minor tick mark type/position to one of the following values:
none
inside
outside
cross (inside and outside)
For example:
chart.set_x_axis({'major_tick_mark': 'none',
'minor_tick_mark': 'inside'})
• major_tick_mark: Same as minor_tick_mark, see above, but for major axes ticks.
• display_units: Set the display units for the axis. This can be useful if the axis numbers
are very large but you don’t want to represent them in scientific notation. The available
display units are:
hundreds
thousands
ten_thousands
hundred_thousands
millions
ten_millions
hundred_millions
billions
trillions
• display_units_visible: Control the visibility of the display units turned on by the pre-
vious option. This option is on by default. (Applicable to value axes only.):
chart.set_x_axis({'display_units': 'hundreds',
'display_units_visible': False})
10.3 chart.set_y_axis()
set_y_axis(options)
Set the chart Y axis options.
Parameters options (dict) – A dictionary of axis options.
The set_y_axis() method is used to set properties of the Y axis.
The properties that can be set are the same as for set_x_axis, see above.
10.4 chart.set_x2_axis()
set_x2_axis(options)
Set the chart secondary X axis options.
Parameters options (dict) – A dictionary of axis options.
The set_x2_axis() method is used to set properties of the secondary X axis, see
chart_secondary_axes().
The properties that can be set are the same as for set_x_axis, see above.
The default properties for this axis are:
'label_position': 'none',
'crossing': 'max',
'visible': False,
10.5 chart.set_y2_axis()
set_y2_axis(options)
Set the chart secondary Y axis options.
Parameters options (dict) – A dictionary of axis options.
The set_y2_axis() method is used to set properties of the secondary Y axis, see
chart_secondary_axes().
The properties that can be set are the same as for set_x_axis, see above.
The default properties for this axis are:
'major_gridlines': {'visible': True}
10.6 chart.combine()
combine(chart)
Combine two charts of different types.
Parameters chart – A chart object created with add_chart().
The chart combine() method is used to combine two charts of different types, for example a
column and line chart:
# Create a primary chart.
column_chart = workbook.add_chart({'type': 'column'})
column_chart.add_series({...})
10.7 chart.set_size()
The set_size() method is used to set the dimensions of the chart. The size properties that can
be set are:
width
height
x_scale
y_scale
x_offset
y_offset
The width and height are in pixels. The default chart width x height is 480 x 288 pixels. The
size of the chart can be modified by setting the width and height or by setting the x_scale
and y_scale:
chart.set_size({'width': 720, 'height': 576})
# Same as:
chart.set_size({'x_scale': 1.5, 'y_scale': 2})
The x_offset and y_offset position the top left corner of the chart in the cell that it is inserted
into.
Note: the x_offset and y_offset parameters can also be set via the insert_chart()
method:
worksheet.insert_chart('E2', chart, {'x_offset': 25, 'y_offset': 10})
10.8 chart.set_title()
set_title(options)
Set the chart title options.
Parameters options (dict) – A dictionary of chart size options.
The set_title() method is used to set properties of the chart title:
chart.set_title({'name': 'Year End Results'})
• none: By default Excel adds an automatic chart title to charts with a single series and a user
defined series name. The none option turns this default title off. It also turns off all other
set_title() options:
chart.set_title({'none': True})
10.9 chart.set_legend()
set_legend(options)
Set the chart legend options.
Parameters options (dict) – A dictionary of chart legend options.
The set_legend() method is used to set properties of the chart legend. For example it can be
used to turn off the default chart legend:
chart.set_legend({'none': True})
• none: In Excel chart legends are on by default. The none option turns off the chart legend:
chart.set_legend({'none': True})
For backward compatibility, it is also possible to turn off the legend via the position prop-
erty:
chart.set_legend({'position': 'none'})
See the Chart Fonts section for more details on font properties.
• border: Set the border properties of the legend such as color and style. See Chart format-
ting: Border .
• fill: Set the solid fill properties of the legend such as color. See Chart formatting: Solid
Fill.
• pattern: Set the pattern fill properties of the legend. See Chart formatting: Pattern Fill.
• gradient: Set the gradient fill properties of the legend. See Chart formatting: Gradient Fill.
• delete_series: This allows you to remove one or more series from the legend (the series
will still display on the chart). This property takes a list as an argument and the series are
zero indexed:
• layout: Set the (x, y) position of the legend in chart relative units:
chart.set_legend({
'layout': {
'x': 0.80,
'y': 0.37,
'width': 0.12,
'height': 0.25,
}
})
10.10 chart.set_chartarea()
set_chartarea(options)
Set the chart area options.
Parameters options (dict) – A dictionary of chart area options.
The set_chartarea() method is used to set the properties of the chart area. In Excel the chart
area is the background area behind the chart:
chart.set_chartarea({
'border': {'none': True},
'fill': {'color': 'red'}
})
10.11 chart.set_plotarea()
set_plotarea(options)
Set the plot area options.
Parameters options (dict) – A dictionary of plot area options.
The set_plotarea() method is used to set properties of the plot area of a chart. In Excel the
plot area is the area between the axes on which the chart series are plotted:
chart.set_plotarea({
'border': {'color': 'red', 'width': 2, 'dash_type': 'dash'},
'fill': {'color': '#FFFFC2'}
})
10.12 chart.set_style()
set_style(style_id)
Set the chart style type.
Parameters style_id (int) – An index representing the chart style.
The set_style() method is used to set the style of the chart to one of the 48 built-in styles
available on the ‘Design’ tab in Excel:
chart.set_style(37)
The style index number is counted from 1 on the top left. The default style is 2.
Note: In Excel 2013 the Styles section of the ‘Design’ tab in Excel shows what were referred to as
‘Layouts’ in previous versions of Excel. These layouts are not defined in the file format. They are
a collection of modifications to the base chart type. They can be replicated using the XlsxWriter
Chart API but they cannot be defined by the set_style() method.
10.13 chart.set_table()
set_table(options)
Set properties for an axis data table.
Parameters options (dict) – A dictionary of axis table options.
The set_table() method adds a data table below the horizontal axis with the data used to plot
the chart:
chart.set_table()
For example:
chart.set_table({'show_keys': True})
The data table can only be shown with Bar, Column, Line, Area and stock charts. See the Chart
Fonts section for more details on font properties.
10.14 chart.set_up_down_bars()
set_up_down_bars(options)
Set properties for the chart up-down bars.
Parameters options (dict) – A dictionary of options.
The set_up_down_bars() method adds Up-Down bars to Line charts to indicate the difference
between the first and last data series:
chart.set_up_down_bars()
It is possible to format the up and down bars to add fill, pattern or gradient and border
properties if required. See Chart Formatting:
chart.set_up_down_bars({
'up': {
'fill': {'color': '#00B050'},
'border': {'color': 'black'}
},
'down': {
'fill': {'color': 'red'},
'border': {'color': 'black'},
},
})
Up-down bars can only be applied to Line charts and to Stock charts (by default).
10.15 chart.set_drop_lines()
set_drop_lines(options)
Set properties for the chart drop lines.
Parameters options (dict) – A dictionary of options.
The set_drop_lines() method adds Drop Lines to charts to show the Category value of points
in the data:
chart.set_drop_lines()
It is possible to format the Drop Line line properties if required. See Chart Formatting:
chart.set_drop_lines({'line': {'color': 'red',
'dash_type': 'square_dot'}})
Drop Lines are only available in Line, Area and Stock charts.
10.16 chart.set_high_low_lines()
set_high_low_lines(options)
Set properties for the chart high-low lines.
Parameters options (dict) – A dictionary of options.
The set_high_low_lines() method adds High-Low lines to charts to show the maximum and
minimum values of points in a Category:
chart.set_high_low_lines()
It is possible to format the High-Low Line line properties if required. See Chart Formatting:
chart.set_high_low_lines({
'line': {
'color': 'red',
'dash_type': 'square_dot'
}
})
10.17 chart.show_blanks_as()
show_blanks_as(option)
Set the option for displaying blank data in a chart.
Parameters option (string) – A string representing the display option.
The show_blanks_as() method controls how blank data is displayed in a chart:
chart.show_blanks_as('span')
10.18 chart.show_hidden_data()
show_hidden_data()
Display data on charts from hidden rows or columns.
10.19 chart.set_rotation()
set_rotation(rotation)
Set the Pie/Doughnut chart rotation.
Parameters rotation (int) – The angle of rotation.
The set_rotation() method is used to set the rotation of the first segment of a Pie/Doughnut
chart. This has the effect of rotating the entire chart:
chart->set_rotation(90)
The angle of rotation must be in the range 0 <= rotation <= 360.
This option is only available for Pie/Doughnut charts.
10.20 chart.set_hole_size()
set_hole_size(size)
Set the Doughnut chart hole size.
Parameters size (int) – The hole size as a percentage.
The set_hole_size() method is used to set the hole size of a Doughnut chart:
chart->set_hole_size(33)
The value of the hole size must be in the range 10 <= size <= 90.
This option is only available for Doughnut charts.
See also Working with Charts and Chart Examples.
ELEVEN
The Chartsheet class has some of the functionality of data Worksheets such as tab selection,
headers, footers, margins and print properties but its primary purpose is to display a single chart.
This makes it different from ordinary data worksheets which can have one or more embedded
charts.
Like a data worksheet a chartsheet object isn’t instantiated directly. Instead a new chartsheet is
created by calling the add_chartsheet() method from a Workbook object:
167
Creating Excel files with Python and XlsxWriter, Release 1.2.9
workbook = xlsxwriter.Workbook('filename.xlsx')
worksheet = workbook.add_worksheet() # Required for the chart data.
chartsheet = workbook.add_chartsheet()
#...
workbook.close()
A chartsheet object functions as a worksheet and not as a chart. In order to have it display data a
Chart object must be created and added to the chartsheet:
chartsheet = workbook.add_chartsheet()
chart = workbook.add_chart({'type': 'bar'})
chartsheet.set_chart(chart)
The data for the chartsheet chart must be contained on a separate worksheet. That is why it is
always created in conjunction with at least one data worksheet, as shown above.
11.1 chartsheet.set_chart()
set_chart(chart)
Add a chart to a chartsheet.
Parameters chart – A chart object.
The set_chart() method is used to insert a chart into a chartsheet. A chart object is created
via the Workbook add_chart() method where the chart type is specified:
chart = workbook.add_chart({type, 'column'})
chartsheet.set_chart(chart)
The following The Worksheet Class methods are also available through a chartsheet:
• activate()
• select()
• hide()
• set_first_sheet()
• protect()
• set_zoom()
• set_tab_color()
• set_landscape()
• set_portrait()
• set_paper()
• set_margins()
• set_header()
• set_footer()
• get_name()
For example:
chartsheet.set_tab_color('#FF9900')
The set_zoom() method can be used to modify the displayed size of the chart.
TWELVE
The Exception class contains the various exceptions that can be raised by XlsxWriter. In general
XlsxWriter only raised exceptions for un-recoverable errors or for errors that would lead to file
corruption such as creating two worksheets with the same name.
The hierarchy of exceptions in XlsxWriter is:
• XlsxWriterException(Exception)
– XlsxFileError(XlsxWriterException)
* FileCreateError(XlsxFileError)
* UndefinedImageSize(XlsxFileError)
* UndefinedImageSize(XlsxFileError)
* FileSizeError(XlsxFileError)
– XlsxInputError(XlsxWriterException)
* DuplicateTableName(XlsxInputError)
* InvalidWorksheetName(XlsxInputError)
* DuplicateWorksheetName(XlsxInputError)
exception XlsxWriterException
Base exception for XlsxWriter.
exception XlsxFileError
Base exception for all file related errors.
171
Creating Excel files with Python and XlsxWriter, Release 1.2.9
exception XlsxInputError
Base exception for all input data related errors.
exception FileCreateError
This exception is raised if there is a file permission, or IO error, when writing the xlsx file to disk.
This can be caused by an non-existent directory or (in Windows) if the file is already open in Excel:
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet = workbook.add_worksheet()
Raises:
xlsxwriter.exceptions.FileCreateError:
[Errno 13] Permission denied: 'exception.xlsx'
This exception can be caught in a try block where you can instruct the user to close the open file
before overwriting it:
while True:
try:
workbook.close()
except xlsxwriter.exceptions.FileCreateError as e:
# For Python 3 use input() instead of raw_input().
decision = raw_input("Exception caught in workbook.close(): %s\n"
"Please close the file if it is open in Excel.\n"
"Try to write file again? [Y/n]: " % e)
if decision != 'n':
continue
break
exception UndefinedImageSize
This exception is raised if an image added via insert_image() doesn’t contain height or width
information. The exception is raised during Workbook close():
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet = workbook.add_worksheet()
worksheet.insert_image('A1', 'logo.png')
workbook.close()
Raises:
xlsxwriter.exceptions.UndefinedImageSize:
logo.png: no size data found in image file.
Note: This is a relatively rare error that is most commonly caused by XlsxWriter failing to parse
the dimensions of the image rather than the image not containing the information. In these cases
you should raise a GitHub issue with the image attached, or provided via a link.
exception UnsupportedImageFormat
This exception is raised if if an image added via insert_image() isn’t one of the supported file
formats: PNG, JPEG, BMP, WMF or EMF. The exception is raised during Workbook close():
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet = workbook.add_worksheet()
worksheet.insert_image('A1', 'logo.xyz')
workbook.close()
Raises:
xlsxwriter.exceptions.UnsupportedImageFormat:
logo.xyz: Unknown or unsupported image file format.
Note: If the image type is one of the supported types, and you are sure that the file format is
correct, then the exception may be caused by XlsxWriter failing to parse the type of the image
correctly. In these cases you should raise a GitHub issue with the image attached, or provided via
a link.
exception FileSizeError
This exception is raised if one of the XML files that is part of the xlsx file, or the xlsx file itself,
exceeds 4GB in size:
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
Raises:
xlsxwriter.exceptions.FileSizeError:
Filesize would require ZIP64 extensions. Use workbook.use_zip64().
As noted in the exception message, files larger than 4GB can be created by turning on the zipfile.py
ZIP64 extensions using the use_zip64() method.
exception EmptyChartSeries
This exception is raised if a chart is added to a worksheet without a data series. The exception is
raised during Workbook close():
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet = workbook.add_worksheet()
worksheet.insert_chart('A7', chart)
workbook.close()
Raises:
xlsxwriter.exceptions.EmptyChartSeries:
Chart1 must contain at least one data series. See chart.add_series().
exception DuplicateTableName
This exception is raised if a duplicate worksheet table name in used via add_table(). The
exception is raised during Workbook close():
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
Raises:
xlsxwriter.exceptions.DuplicateTableName:
Duplicate name 'SalesData' used in worksheet.add_table().
exception InvalidWorksheetName
This exception is raised during Workbook add_worksheet() if a worksheet name is too long or
contains restricted characters.
For example with a 32 character worksheet name:
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
name = 'name_that_is_longer_than_thirty_one_characters'
worksheet = workbook.add_worksheet(name)
workbook.close()
Raises:
xlsxwriter.exceptions.InvalidWorksheetName:
Excel worksheet name 'name_that_is_longer_than_thirty_one_characters'
must be <= 31 chars.
Or for a worksheet name containing one of the Excel restricted characters, i.e. [ ] : * ? /
\:
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet = workbook.add_worksheet('Data[Jan]')
workbook.close()
Raises:
xlsxwriter.exceptions.InvalidWorksheetName:
Invalid Excel character '[]:*?/\' in sheetname 'Data[Jan]'.
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet = workbook.add_worksheet("'Sheet1'")
workbook.close()
Raises:
xlsxwriter.exceptions.InvalidWorksheetName:
Sheet name cannot start or end with an apostrophe "'Sheet1'".
exception DuplicateWorksheetName
This exception is raised during Workbook add_worksheet() if a worksheet name has already
been used. As with Excel the check is case insensitive:
import xlsxwriter
workbook = xlsxwriter.Workbook('exception.xlsx')
worksheet1 = workbook.add_worksheet('Sheet1')
worksheet2 = workbook.add_worksheet('sheet1')
workbook.close()
Raises:
xlsxwriter.exceptions.DuplicateWorksheetName:
Sheetname 'sheet1', with case ignored, is already in use.
THIRTEEN
XlsxWriter supports two forms of notation to designate the position of cells: Row-column notation
and A1 notation.
Row-column notation uses a zero based index for both row and column while A1 notation uses the
standard Excel alphanumeric sequence of column letter and 1-based row. For example:
(0, 0) # Row-column notation.
('A1') # The same cell in A1 notation.
A1 notation is useful for setting up a worksheet manually and for working with formulas:
worksheet.write('H1', 200)
worksheet.write('H2', '=H1+1')
In general when using the XlsxWriter module you can use A1 notation anywhere you can use
row-column notation. This also applies to methods that take a range of cells:
worksheet.merge_range(2, 1, 3, 3, 'Merged Cells', merge_format)
worksheet.merge_range('B3:D4', 'Merged Cells', merge_format)
Note:
• Ranges in A1 notation must be in uppercase, like in Excel.
• In Excel it is also possible to use R1C1 notation. This is not supported by XlsxWriter.
177
Creating Excel files with Python and XlsxWriter, Release 1.2.9
In Excel you can specify row or column ranges such as 1:1 for all of the first row or A:A for all
of the first column. In XlsxWriter these can be set by specifying the full cell range for the row or
column:
worksheet.print_area('A1:XFD1') # Same as 1:1
worksheet.print_area('A1:A1048576') # Same as A:A
This is actually how Excel stores ranges such as 1:1 and A:A internally.
These ranges can also be specified using row-column notation, as explained above:
worksheet.print_area(0, 0, 0, 16383) # Same as 1:1
worksheet.print_area(0, 0, 1048575, 0) # Same as A:A
When dealing with Excel cell references it is important to distinguish between relative and absolute
cell references in Excel.
Relative cell references change when they are copied while Absolute references maintain fixed
row and/or column references. In Excel absolute references are prefixed by the dollar symbol as
shown below:
'A1' # Column and row are relative.
'$A1' # Column is absolute and row is relative.
'A$1' # Column is relative and row is absolute.
'$A$1' # Column and row are absolute.
See the Microsoft Office documentation for more information on relative and absolute references.
Some functions such as conditional_format() may require absolute references, depending
on the range being specified.
It is also possible to define and use “Defined names/Named ranges” in workbooks and worksheets,
see define_name():
workbook.define_name('Exchange_rate', '=0.96')
worksheet.write('B3', '=B2*Exchange_rate')
The XlsxWriter utility module contains several helper functions for dealing with A1 notation
as shown below. These functions can be imported as follows:
cell = xl_rowcol_to_cell(1, 2) # C2
13.4.1 xl_rowcol_to_cell()
The optional parameters row_abs and col_abs can be used to indicate that the row or column
is absolute:
str = xl_rowcol_to_cell(0, 0, col_abs=True) # $A1
str = xl_rowcol_to_cell(0, 0, row_abs=True) # A$1
str = xl_rowcol_to_cell(0, 0, row_abs=True, col_abs=True) # $A$1
13.4.2 xl_cell_to_rowcol()
xl_cell_to_rowcol(cell_str )
Convert a cell reference in A1 notation to a zero indexed row and column.
Parameters cell_str (string) – A1 style string, absolute or relative.
Return type Tuple of ints for (row, col).
The xl_cell_to_rowcol() function converts an Excel cell reference in A1 notation to a zero
based row and column. The function will also handle Excel’s absolute, $, cell notation:
13.4.3 xl_col_to_name()
xl_col_to_name(col [, col_abs ])
Convert a zero indexed column cell reference to a string.
Parameters
• col (int) – The cell column.
• col_abs (bool) – Optional flag to make the column absolute.
Return type Column style string.
The xl_col_to_name() converts a zero based column reference to a string:
column = xl_col_to_name(0) # A
column = xl_col_to_name(1) # B
column = xl_col_to_name(702) # AAA
The optional parameter col_abs can be used to indicate if the column is absolute:
column = xl_col_to_name(0, False) # A
column = xl_col_to_name(0, True) # $A
column = xl_col_to_name(1, True) # $B
13.4.4 xl_range()
13.4.5 xl_range_abs()
FOURTEEN
The following sections explain how to write various types of data to an Excel worksheet using
XlsxWriter.
The worksheet write() method is the most common means of writing Python data to cells
based on its type:
import xlsxwriter
workbook = xlsxwriter.Workbook('write_data.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
183
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The write() method uses the type() of the data to determine which specific method to use
for writing the data. These methods then map some basic Python types to corresponding Excel
types. The mapping is as follows:
Python type Excel type Worksheet methods
int Number write(), write_number()
long
float
Decimal
Fraction
basestring String write(), write_string()
str
unicode
None String (blank) write(), write_blank()
datetime.date Number write(), write_datetime()
datetime.datetime
datetime.time
datetime.timedelta
bool Boolean write(), write_boolean()
The write() method also handles a few other Excel types that are encoded as Python strings in
XlsxWriter:
Unicode data in Excel is encoded as UTF-8. XlsxWriter also supports writing UTF-8 data. This
generally requires that your source file in also UTF-8 encoded:
# _*_ coding: utf-8
# Python 2 example.
See Example: Simple Unicode with Python 2 and Example: Simple Unicode with Python 3 for
more complete examples.
Alternatively, you can read data from an encoded file, convert it to UTF-8 during reading and then
write the data to an Excel file. See Example: Unicode - Polish in UTF-8 and Example: Unicode -
Shift JIS.
Writing compound data types such as lists with XlsxWriter is done the same way it would be in
any other Python program: with a loop. The Python enumerate() function is also very useful in
this context:
import xlsxwriter
workbook = xlsxwriter.Workbook('write_list.xlsx')
worksheet = workbook.add_worksheet()
my_list = [1, 2, 3, 4, 5]
workbook.close()
import xlsxwriter
workbook = xlsxwriter.Workbook('write_list.xlsx')
worksheet = workbook.add_worksheet()
my_list = [1, 2, 3, 4, 5]
workbook.close()
For a list of lists structure you would use two loop levels:
import xlsxwriter
workbook = xlsxwriter.Workbook('write_list.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
The worksheet class has two utility functions called write_row() and write_column() which
are basically a loop around the write() method:
import xlsxwriter
workbook = xlsxwriter.Workbook('write_list.xlsx')
worksheet = workbook.add_worksheet()
my_list = [1, 2, 3, 4, 5]
worksheet.write_row(0, 1, my_list)
worksheet.write_column(1, 0, my_list)
workbook.close()
Unlike lists there is no single simple way to write a Python dictionary to an Excel worksheet using
Xlsxwriter. The method will depend of the structure of the data in the dictionary. Here is a simple
example for a simple data structure:
import xlsxwriter
workbook = xlsxwriter.Workbook('write_dict.xlsx')
worksheet = workbook.add_worksheet()
col_num = 0
for key, value in my_dict.items():
worksheet.write(0, col_num, key)
worksheet.write_column(1, col_num, value)
col_num += 1
workbook.close()
The best way to deal with dataframes or complex data structure is to use Python Pandas. Pandas
is a Python data analysis library. It can read, filter and re-arrange small and large data sets and
output them in a range of formats including Excel.
To use XlsxWriter with Pandas you specify it as the Excel writer engine:
import pandas as pd
# Close the Pandas Excel writer and output the Excel file.
writer.save()
For more information on using Pandas with XlsxWriter see Working with Python Pandas and Xl-
sxWriter .
As shown in the the first section above, the worksheet write() method maps the main Python
data types to Excel’s data types. If you want to write an unsupported type then you can either
avoid write() and map the user type in your code to one of the more specific write methods
or you can extend it using the add_write_handler() method. This can occasionally be more
convenient then adding a lot of if/else logic to your code.
As an example, say you wanted to modify write() to automatically write uuid types as strings.
You would start by creating a function that takes the uuid, converts it to a string and then writes it
using write_string():
def write_uuid(worksheet, row, col, uuid, format=None):
return worksheet.write_string(row, col, str(uuid), format)
You could then add a handler that matches the uuid type and calls your user defined function:
# match, action()
worksheet.add_write_handler(uuid.UUID, write_uuid)
# Write the UUID. This would raise a TypeError without the handler.
worksheet.write('A1', my_uuid)
Multiple callback functions can be added using add_write_handler() but only one callback
action is allowed per type. However, it is valid to use the same callback function for different types:
worksheet.add_write_handler(int, test_number_range)
worksheet.add_write_handler(float, test_number_range)
The write() method is mainly a large if() statement that checks the type() of the input
value and call the appropriate worksheet method to write the data. The add_write_handler()
method works by injecting additional type checks and associated actions into this if() statement.
Here is a simplified version of the write() method:
def write(self, row, col, *args):
# The first arg should be the token for all write calls.
token = args[0]
# Check for any user defined type handlers with callback functions.
if token_type in self.write_handlers:
write_handler = self.write_handlers[token_type]
# Etc. ...
Functions used in the add_write_handler() method should have the following method signa-
ture/parameters:
def my_function(worksheet, row, col, token, format=None):
return worksheet.write_string(row, col, token, format)
The function will be passed a worksheet instance, an integer row and col value, a token that
matches the type added to add_write_handler() and some additional parameters. Usually
the additional parameter(s) will only be a cell format instance. However, if you need to handle
other additional parameters, such as those passed to write_url() then you can have more
generic handling like this:
def my_function(worksheet, row, col, token, *args):
return worksheet.write_string(row, col, token, *args)
Note, you don’t have to explicitly handle A1 style cell ranges. These will be converted to row and
column values prior to your function being called.
You can also make use of the row and col parameters to control the logic of the function. Say
for example you wanted to hide/replace user passwords with ‘****’ when writing string data. If your
data was structured so that the password data was in the second column, apart from the header
row, you could write a handler function like this:
def hide_password(worksheet, row, col, string, format=None):
if col == 1 and row > 0:
return worksheet.write_string(row, col, '****', format)
else:
return worksheet.write_string(row, col, string, format)
Functions used in the add_write_handler() method should return one of the following values:
• None: to indicate that control is return to the parent write() method to continue as normal.
This is used if your handler function logic decides that you don’t need to handle the matched
token.
• The return value of the called write_xxx() function. This is generally 0 for no error and a
negative number errors. This causes an immediate return from the calling write() method
with the return value that was passed back.
For example, say you wanted to ignore NaN values in your data since Excel doesn’t support them.
You could create a handler function like the following that matched against floats and which wrote
a blank cell if it was a NaN or else just returned to write() to continue as normal:
def ignore_nan(worksheet, row, col, number, format=None):
if math.isnan(number):
return worksheet.write_blank(row, col, None, format)
else:
# Return control to the calling write() method.
return None
If you wanted to just drop the NaN values completely and not add any formatting to the cell you
could just return 0, for no error:
def ignore_nan(worksheet, row, col, number, format=None):
if math.isnan(number):
return 0
else:
# Return control to the calling write() method.
return None
See the following, more complete, examples of handling user data types:
• Example: Writing User Defined Types (1)
• Example: Writing User Defined Types (2)
• Example: Writing User Defined types (3)
FIFTEEN
However, there are a few potential issues and differences that the user should be aware of. These
are explained in the following sections.
Excel stores formulas in the format of the US English version, regardless of the language or locale
of the end-user’s version of Excel. Therefore all formula function names written using XlsxWriter
must be in English:
worksheet.write_formula('A1', '=SUM(1, 2, 3)') # OK
worksheet.write_formula('A2', '=SOMME(1, 2, 3)') # French. Error on load.
Also, formulas must be written with the US style separator/range operator which is a comma (not
semi-colon). Therefore a formula with multiple values should be written as follows:
197
Creating Excel files with Python and XlsxWriter, Release 1.2.9
If you have a non-English version of Excel you can use the following multi-lingual formula translator
to help you convert the formula. It can also replace semi-colons with commas.
Excel 2010 and later added functions which weren’t defined in the original file specification. These
functions are referred to by Microsoft as future functions. Examples of these functions are ACOT,
CHISQ.DIST.RT , CONFIDENCE.NORM, STDEV.P, STDEV.S and WORKDAY.INTL.
When written using write_formula() these functions need to be fully qualified with a _xlfn.
(or other) prefix as they are shown the list below. For example:
worksheet.write_formula('A1', '=_xlfn.STDEV.S(B1:B10)')
The following list is taken from MS XLSX extensions documentation on future functions.
• _xlfn.ACOT
• _xlfn.ACOTH
• _xlfn.AGGREGATE
• _xlfn.ARABIC
• _xlfn.BASE
• _xlfn.BETA.DIST
• _xlfn.BETA.INV
• _xlfn.BINOM.DIST
• _xlfn.BINOM.DIST.RANGE
• _xlfn.BINOM.INV
• _xlfn.BITAND
• _xlfn.BITLSHIFT
• _xlfn.BITOR
• _xlfn.BITRSHIFT
• _xlfn.BITXOR
• _xlfn.CEILING.MATH
• _xlfn.CEILING.PRECISE
• _xlfn.CHISQ.DIST
• _xlfn.CHISQ.DIST.RT
• _xlfn.CHISQ.INV
• _xlfn.CHISQ.INV.RT
• _xlfn.CHISQ.TEST
• _xlfn.COMBINA
• _xlfn.CONCAT
• _xlfn.CONFIDENCE.NORM
• _xlfn.CONFIDENCE.T
• _xlfn.COT
• _xlfn.COTH
• _xlfn.COVARIANCE.P
• _xlfn.COVARIANCE.S
• _xlfn.CSC
• _xlfn.CSCH
• _xlfn.DAYS
• _xlfn.DECIMAL
• ECMA.CEILING
• _xlfn.ERF.PRECISE
• _xlfn.ERFC.PRECISE
• _xlfn.EXPON.DIST
• _xlfn.F.DIST
• _xlfn.F.DIST.RT
• _xlfn.F.INV
• _xlfn.F.INV.RT
• _xlfn.F.TEST
• _xlfn.FILTERXML
• _xlfn.FLOOR.MATH
• _xlfn.FLOOR.PRECISE
• _xlfn.FORECAST.ETS
• _xlfn.FORECAST.ETS.CONFINT
• _xlfn.FORECAST.ETS.SEASONALITY
• _xlfn.FORECAST.ETS.STAT
• _xlfn.FORECAST.LINEAR
• _xlfn.FORMULATEXT
• _xlfn.GAMMA
• _xlfn.GAMMA.DIST
• _xlfn.GAMMA.INV
• _xlfn.GAMMALN.PRECISE
• _xlfn.GAUSS
• _xlfn.HYPGEOM.DIST
• _xlfn.IFNA
• _xlfn.IFS
• _xlfn.IMCOSH
• _xlfn.IMCOT
• _xlfn.IMCSC
• _xlfn.IMCSCH
• _xlfn.IMSEC
• _xlfn.IMSECH
• _xlfn.IMSINH
• _xlfn.IMTAN
• _xlfn.ISFORMULA
• ISO.CEILING
• _xlfn.ISOWEEKNUM
• _xlfn.LOGNORM.DIST
• _xlfn.LOGNORM.INV
• _xlfn.MAXIFS
• _xlfn.MINIFS
• _xlfn.MODE.MULT
• _xlfn.MODE.SNGL
• _xlfn.MUNIT
• _xlfn.NEGBINOM.DIST
• NETWORKDAYS.INTL
• _xlfn.NORM.DIST
• _xlfn.NORM.INV
• _xlfn.NORM.S.DIST
• _xlfn.NORM.S.INV
• _xlfn.NUMBERVALUE
• _xlfn.PDURATION
• _xlfn.PERCENTILE.EXC
• _xlfn.PERCENTILE.INC
• _xlfn.PERCENTRANK.EXC
• _xlfn.PERCENTRANK.INC
• _xlfn.PERMUTATIONA
• _xlfn.PHI
• _xlfn.POISSON.DIST
• _xlfn.QUARTILE.EXC
• _xlfn.QUARTILE.INC
• _xlfn.QUERYSTRING
• _xlfn.RANK.AVG
• _xlfn.RANK.EQ
• _xlfn.RRI
• _xlfn.SEC
• _xlfn.SECH
• _xlfn.SHEET
• _xlfn.SHEETS
• _xlfn.SKEW.P
• _xlfn.STDEV.P
• _xlfn.STDEV.S
• _xlfn.SWITCH
• _xlfn.T.DIST
• _xlfn.T.DIST.2T
• _xlfn.T.DIST.RT
• _xlfn.T.INV
• _xlfn.T.INV.2T
• _xlfn.T.TEST
• _xlfn.TEXTJOIN
• _xlfn.UNICHAR
• _xlfn.UNICODE
• _xlfn.VAR.P
• _xlfn.VAR.S
• _xlfn.WEBSERVICE
• _xlfn.WEIBULL.DIST
• WORKDAY.INTL
• _xlfn.XOR
• _xlfn.Z.TEST
Worksheet tables can be added with XlsxWriter using the add_table() method:
worksheet.add_table('B3:F7', {options})
By default tables are named Table1, Table2, etc., in the order that they are added. However it
can also be set by the user using the name parameter:
worksheet.add_table('B3:F7', {'name': 'SalesData'})
If you need to know the name of the table, for example to use it in a formula, you can get it as
follows:
table = worksheet.add_table('B3:F7')
table_name = table.name
When used in a formula a table name such as TableX should be referred to as TableX[] (like a
Python list):
If there is an error in the syntax of a formula it is usually displayed in Excel as #NAME?. Alternatively
you may get a warning from Excel when the file is loaded. If you encounter an error like this you
can debug it as follows:
1. Ensure the formula is valid in Excel by copying and pasting it into a cell. Note, this should be
done in Excel and not other applications such as OpenOffice or LibreOffice since they may
have slightly different syntax.
2. Ensure the formula is using comma separators instead of semi-colons, see Non US Excel
functions and syntax above.
3. Ensure the formula is in English, see Non US Excel functions and syntax above.
4. Ensure that the formula doesn’t contain an Excel 2010+ future function as listed above (For-
mulas added in Excel 2010 and later ). If it does then ensure that the correct prefix is used.
5. If the function loads in Excel without calculating and appears with one or more @
symbols added then it is probably an array function and should be written using
write_array_formula().
Finally if you have completed all the previous steps and still get a #NAME? error you can examine
a valid Excel file to see what the correct syntax should be. To do this you should create a valid
formula in Excel and save the file. You can then examine the XML in the unzipped file.
The following shows how to do that using Linux unzip and libxml’s xmllint to format the XML for
clarity:
$ unzip myfile.xlsx -d myfile
$ xmllint --format myfile/xl/worksheets/sheet1.xml | grep '</f>'
<f>SUM(1, 2, 3)</f>
XlsxWriter doesn’t calculate the result of a formula and instead stores the value 0 as the formula
result. It then sets a global flag in the XLSX file to say that all formulas and functions should be
recalculated when the file is opened.
This is the method recommended in the Excel documentation and in general it works fine with
spreadsheet applications. However, applications that don’t have a facility to calculate formulas will
only display the 0 results. Examples of such applications are Excel Viewer, PDF Converters, and
some mobile device applications.
If required, it is also possible to specify the calculated result of the formula using the optional
value parameter for write_formula():
The value parameter can be a number, a string, a bool or one of the following Excel error codes:
#DIV/0!
#N/A
#NAME?
#NULL!
#NUM!
#REF!
#VALUE!
It is also possible to specify the calculated result of an array formula created with
write_array_formula():
# Specify the result for a single cell range.
worksheet.write_array_formula('A1:A1', '{=SUM(B1:C1*B2:C2)}', cell_format, 2005)
However, using this parameter only writes a single value to the upper left cell in the result array. For
a multi-cell array formula where the results are required, the other result values can be specified
by using write_number() to write to the appropriate cell:
# Specify the results for a multi cell range.
worksheet.write_array_formula('A1:A3', '{=TREND(C1:C3,B1:B3)}', cell_format, 15)
worksheet.write_number('A2', 12, cell_format)
worksheet.write_number('A3', 14, cell_format)
SIXTEEN
Dates and times in Excel are represented by real numbers, for example “Jan 1 2013 12:00 PM” is
represented by the number 41275.5.
The integer part of the number stores the number of days since the epoch and the fractional part
stores the percentage of the day.
A date or time in Excel is just like any other number. To display the number as a date you must
apply an Excel number format to it. Here are some examples:
import xlsxwriter
workbook = xlsxwriter.Workbook('date_examples.xlsx')
worksheet = workbook.add_worksheet()
205
Creating Excel files with Python and XlsxWriter, Release 1.2.9
workbook.close()
To make working with dates and times a little easier the XlsxWriter module provides a
write_datetime() method to write dates in standard library datetime format.
Specifically it supports datetime objects of type datetime.datetime, datetime.date, date-
time.time and datetime.timedelta.
There are many way to create datetime objects, for example the date-
time.datetime.strptime() method:
date_time = datetime.datetime.strptime('2013-01-23', '%Y-%m-%d')
Here is a longer example that displays the same date in a several different formats:
# Write the same date and time using each of the above formats.
for date_format_str in date_formats:
207
Creating Excel files with Python and XlsxWriter, Release 1.2.9
row += 1
workbook.close()
In certain circumstances you may wish to apply a default date format when writing datetime ob-
jects, for example, when handling a row of data with write_row().
In these cases it is possible to specify a default date format string using the Workbook() con-
structor default_date_format option:
workbook = xlsxwriter.Workbook('datetimes.xlsx', {'default_date_format':
'dd/mm/yy'})
worksheet = workbook.add_worksheet()
date_time = datetime.now()
worksheet.write_datetime(0, 0, date_time) # Formatted as 'dd/mm/yy'
workbook.close()
Excel doesn’t support timezones in datetimes/times so there isn’t any fail-safe way that XlsxWriter
can map a Python timezone aware datetime into an Excel datetime. As such the user should
handle the timezones in some way that makes sense according to their requirements. Usually this
will require some conversion to a timezone adjusted time and the removal of the tzinfo from the
datetime object so that it can be passed to write_datetime():
utc_datetime = datetime(2016, 9, 23, 14, 13, 21, tzinfo=utc)
naive_datetime = utc_datetime.replace(tzinfo=None)
Alternatively the Workbook() constructor option remove_timezone can be used to strip the
timezone from datetime values passed to write_datetime(). The default is False. To enable
this option use:
workbook = xlsxwriter.Workbook(filename, {'remove_timezone': True})
When Working with Python Pandas and XlsxWriter you can pass the argument as follows:
writer = pd.ExcelWriter('pandas_example.xlsx',
engine='xlsxwriter',
options={'remove_timezone': True})
SEVENTEEN
Throughout XlsxWriter colors are specified using a Html style #RRGGBB value. For example with
a Format object:
cell_format.set_font_color('#FF0000')
The color names and corresponding #RRGGBB value are shown below:
Color name RGB color code
black #000000
blue #0000FF
brown #800000
cyan #00FFFF
gray #808080
green #008000
lime #00FF00
magenta #FF00FF
navy #000080
orange #FF6600
pink #FF00FF
purple #800080
red #FF0000
silver #C0C0C0
white #FFFFFF
yellow #FFFF00
211
Creating Excel files with Python and XlsxWriter, Release 1.2.9
EIGHTEEN
This section explains how to work with some of the options and features of The Chart Class.
The majority of the examples in this section are based on a variation of the following program:
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_line.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
213
Creating Excel files with Python and XlsxWriter, Release 1.2.9
When working with charts it is important to understand how Excel differentiates between a chart
axis that is used for series categories and a chart axis that is used for series values.
In the majority of Excel charts the X axis is the category axis and each of the values is evenly
spaced and sequential. The Y axis is the value axis and points are displayed according to their
value:
Excel treats these two types of axis differently and exposes different properties for each. For
example, here are the properties for a category axis:
As such, some of the XlsxWriter axis properties can be set for a value axis, some can be set for
a category axis and some properties can be set for both. For example reverse can be set for
either category or value axes while the min and max properties can only be set for value axes
(and Date Axes). The documentation calls out the type of axis to which properties apply.
For a Bar chart the Category and Value axes are reversed:
Date Category Axes are a special type of category axis that give them some of the properties of
values axes such as min and max when used with date or time values.
This following sections detail the more complex options of the add_series() Chart method:
marker
trendline
y_error_bars
x_error_bars
data_labels
points
smooth
The marker format specifies the properties of the markers used to distinguish series on a chart. In
general only Line and Scatter chart types and trendlines use markers.
The following properties can be set for marker formats in a chart:
type
size
border
fill
pattern
gradient
The type property sets the type of marker that is used with a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'marker': {'type': 'diamond'},
})
The following type properties can be set for marker formats in a chart. These are shown in the
same order as in the Excel format dialog:
automatic
none
square
diamond
triangle
x
star
short_dash
long_dash
circle
plus
The automatic type is a special case which turns on a marker using the default marker style for
the particular series number:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'marker': {'type': 'automatic'},
})
If automatic is on then other marker properties such as size, border or fill cannot be set.
The size property sets the size of the marker and is generally used in conjunction with type:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'marker': {'type': 'diamond', 'size': 7},
})
Nested border and fill properties can also be set for a marker:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'marker': {
'type': 'square',
'size': 8,
'border': {'color': 'black'},
'fill': {'color': 'red'},
},
})
A trendline can be added to a chart series to indicate trends in the data such as a moving average
or a polynomial fit.
The following properties can be set for trendlines in a chart series:
type
order (for polynomial trends)
period (for moving average)
forward (for all except moving average)
backward (for all except moving average)
name
line
intercept (for exponential, linear and polynomial only)
display_equation (for all except moving average)
display_r_squared (for all except moving average)
A polynomial trendline can also specify the order of the polynomial. The default value is 2:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'trendline': {
'type': 'polynomial',
'order': 3,
},
})
A moving_average trendline can also specify the period of the moving average. The default
value is 2:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'trendline': {
'type': 'moving_average',
'period': 2,
},
})
The forward and backward properties set the forecast period of the trendline:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'trendline': {
'type': 'polynomial',
'order': 2,
'forward': 0.5,
'backward': 0.5,
},
})
The name property sets an optional name for the trendline that will appear in the chart legend.
If it isn’t specified the Excel default name will be displayed. This is usually a combination of the
trendline type and the series name:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'trendline': {
'type': 'polynomial',
'name': 'My trend name',
'order': 2,
},
})
The intercept property sets the point where the trendline crosses the Y (value) axis:
chart.add_series({
'values': '=Sheet1!$B$1:$B$5',
'trendline': {'type': 'linear',
'intercept': 0.8,
},
})
The display_r_squared property displays the R squared value of the trendline on the chart:
chart.add_series({
'values': '=Sheet1!$B$1:$B$5',
'trendline': {'type': 'linear',
'display_r_squared': True,
},
})
Trendlines cannot be added to series in a stacked chart or pie chart, doughnut chart, radar chart
or (when implemented) to 3D or surface charts.
Error bars can be added to a chart series to indicate error bounds in the data. The error bars can
be vertical y_error_bars (the most common type) or horizontal x_error_bars (for Bar and
Scatter charts only).
The following properties can be set for error bars in a chart series:
type
value (for all types except standard error and custom)
plus_values (for custom only)
minus_values (for custom only)
direction
end_style
line
The type property sets the type of error bars in the series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'y_error_bars': {'type': 'standard_error'},
})
All error bar types, except for standard_error and custom must also have a value associated
with it for the error bounds:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'y_error_bars': {
'type': 'percentage',
'value': 5,
},
})
The custom error bar type must specify plus_values and minus_values which should either
by a Sheet1!$A$1:$A$5 type range formula or a list of values:
chart.add_series({
'categories': '=Sheet1!$A$1:$A$5',
'values': '=Sheet1!$B$1:$B$5',
'y_error_bars': {
'type': 'custom',
'plus_values': '=Sheet1!$C$1:$C$5',
'minus_values': '=Sheet1!$D$1:$D$5',
},
})
# or
chart.add_series({
'categories': '=Sheet1!$A$1:$A$5',
'values': '=Sheet1!$B$1:$B$5',
'y_error_bars': {
'type': 'custom',
'plus_values': [1, 1, 1, 1, 1],
'minus_values': [2, 2, 2, 2, 2],
},
})
The end_style property sets the style of the error bar end cap. The options are 1 (the default)
or 0 (for no end cap):
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'y_error_bars': {
'type': 'fixed',
'value': 2,
'end_style': 0,
'direction': 'minus'
},
})
Data labels can be added to a chart series to indicate the values of the plotted data points.
The following properties can be set for data_labels formats in a chart:
value
category
series_name
position
leader_lines
percentage
separator
legend_key
num_format
font
The value property turns on the Value data label for a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'data_labels': {'value': True},
})
The category property turns on the Category Name data label for a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'data_labels': {'category': True},
})
The series_name property turns on the Series Name data label for a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'data_labels': {'series_name': True},
})
The position property is used to position the data label for a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
In Excel the allowable data label positions vary for different chart types. The allowable positions
are:
Position Line, Scatter, Stock Bar, Column Pie, Doughnut Area, Radar
center Yes Yes Yes Yes*
right Yes*
left Yes
above Yes
below Yes
inside_base Yes
inside_end Yes Yes
outside_end Yes* Yes
best_fit Yes*
Note: The * indicates the default position for each chart type in Excel, if a position isn’t specified.
The percentage property is used to turn on the display of data labels as a Percentage for a
series. In Excel the percentage data label option is only available for Pie and Doughnut chart
variants:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'data_labels': {'percentage': True},
})
The leader_lines property is used to turn on Leader Lines for the data label of a series. It is
mainly used for pie charts:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'data_labels': {'value': True, 'leader_lines': True},
})
Note: Even when leader lines are turned on they aren’t automatically visible in Excel or Xl-
sxWriter. Due to an Excel limitation (or design) leader lines only appear if the data label is moved
manually or if the data labels are very close and need to be adjusted automatically.
The separator property is used to change the separator between multiple data label items:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'data_labels': {'value': True, 'category': True, 'separator': "\n"},
})
'\n'
' '
The legend_key property is used to turn on the Legend Key for the data label of a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'data_labels': {'value': True, 'legend_key': True},
})
The num_format property is used to set the number format for the data labels of a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$5',
'data_labels': {'value': True, 'num_format': '#,##0.00'},
})
The number format is similar to the Worksheet Cell Format num_format apart from the fact that
a format index cannot be used. An explicit format string must be used as shown above. See
set_num_format() for more information.
The font property is used to set the font of the data labels of a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$5',
'data_labels': {
'value': True,
'font': {'name': 'Consolas'}
},
})
The font property is also used to rotate the data labels of a series:
chart.add_series({
'values': '=Sheet1!$A$1:$A$5',
'data_labels': {
'value': True,
'font': {'rotation': 45}
},
})
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_pie.xlsx')
worksheet = workbook.add_worksheet()
chart = workbook.add_chart({'type': 'pie'})
data = [
['Pass', 'Fail'],
[90, 10],
]
worksheet.write_column('A1', data[0])
worksheet.write_column('B1', data[1])
chart.add_series({
'categories': '=Sheet1!$A$1:$A$2',
'values': '=Sheet1!$B$1:$B$2',
'points': [
{'fill': {'color': 'green'}},
{'fill': {'color': 'red'}},
],
})
worksheet.insert_chart('C3', chart)
workbook.close()
The points property takes a list of format options (see the “Chart Formatting” section below). To
assign default properties to points in a series pass None values in the array ref:
# Format point 3 of 3 only.
chart.add_series({
'values': '=Sheet1!A1:A3',
'points': [
None,
None,
{'fill': {'color': '#990000'}},
],
})
The smooth option is used to set the smooth property of a line series. It is only applicable to the
line and scatter chart types:
chart.add_series({
'categories': '=Sheet1!$A$1:$A$5',
'values': '=Sheet1!$B$1:$B$5',
'smooth': True,
})
The following chart formatting properties can be set for any chart object that they apply to (and
that are supported by XlsxWriter) such as chart lines, column fill areas, plot area borders, markers,
gridlines and other chart elements:
line
border
fill
pattern
gradient
In some cases the format properties can be nested. For example a marker may contain border
and fill sub-properties:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'line': {'color': 'blue'},
'marker': {'type': 'square',
'size,': 5,
'border': {'color': 'red'},
'fill': {'color': 'yellow'}
},
})
The line format is used to specify properties of line objects that appear in a chart such as a plotted
line on a chart or a border.
The following properties can be set for line formats in a chart:
none
color
width
dash_type
transparency
The none property is uses to turn the line off (it is always on by default except in Scatter charts).
This is useful if you wish to plot a series with markers but without a line:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'line': {'none': True},
'marker': {'type': 'automatic'},
})
The available colors are shown in the main XlsxWriter documentation. It is also possible to set the
color of a line with a Html style #RRGGBB string or a limited number of named colors, see Working
with Colors:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
The width property sets the width of the line. It should be specified in increments of 0.25 of a
point as in Excel:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'line': {'width': 3.25},
})
The following dash_type values are available. They are shown in the order that they appear in
The solid fill format is used to specify filled areas of chart objects such as the interior of a column
or the background of the chart itself.
The following properties can be set for fill formats in a chart:
none
color
transparency
The none property is used to turn the fill property off (it is generally on by default):
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'fill': {'none': True},
'border': {'color': 'black'}
})
The available colors are shown in the main XlsxWriter documentation. It is also possible to set the
color of a fill with a Html style #RRGGBB string or a limited number of named colors, see Working
with Colors:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'fill': {'color': '#FF9900'}
})
The transparency property sets the transparency of the solid fill color in the integer range 1
- 100. The color must be set for transparency to work, it doesn’t work with an automatic/default
color:
chart.set_chartarea({'fill': {'color': 'yellow', 'transparency': 50}})
The fill format is generally used in conjunction with a border format which has the same
properties as a line format:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'fill': {'color': 'red'},
'border': {'color': 'black'}
})
The pattern fill format is used to specify pattern filled areas of chart objects such as the interior of
a column or the background of the chart itself.
The following properties can be set for pattern fill formats in a chart:
pattern: the pattern to be applied (required)
fg_color: the foreground color of the pattern (required)
bg_color: the background color (optional, defaults to white)
For example:
chart.set_plotarea({
'pattern': {
'pattern': 'percent_5',
'fg_color': 'red',
'bg_color': 'yellow',
}
})
• small_confetti
• large_confetti
• zigzag
• wave
• diagonal_brick
• horizontal_brick
• weave
• plaid
• divot
• dotted_grid
• dotted_diamond
• shingle
• trellis
• sphere
• small_grid
• large_grid
• small_check
• large_check
• outlined_diamond
• solid_diamond
The foreground color, fg_color, is a required parameter and can be a Html style #RRGGBB string
or a limited number of named colors, see Working with Colors.
The background color, bg_color, is optional and defaults to white.
If a pattern fill is used on a chart object it overrides the solid fill properties of the object.
The gradient fill format is used to specify gradient filled areas of chart objects such as the interior
of a column or the background of the chart itself.
The following properties can be set for gradient fill formats in a chart:
colors: a list of colors
positions: an optional list of positions for the colors
type: the optional type of gradient fill
angle: the optional angle of the linear fill
The colors property sets a list of colors that define the gradient:
chart.set_plotarea({
'gradient': {'colors': ['#FFEFD1', '#F0EBD5', '#B69F66']}
})
Excel allows between 2 and 10 colors in a gradient but it is unlikely that you will require more than
2 or 3.
As with solid or pattern fill it is also possible to set the colors of a gradient with a Html style
#RRGGBB string or a limited number of named colors, see Working with Colors:
chart.add_series({
'values': '=Sheet1!$A$1:$A$6',
'gradient': {'colors': ['red', 'green']}
})
The positions defines an optional list of positions, between 0 and 100, of where the colors in
the gradient are located. Default values are provided for colors lists of between 2 and 4 but they
can be specified if required:
chart.add_series({
'values': '=Sheet1!$A$1:$A$5',
'gradient': {
'colors': ['#DDEBCF', '#156B13'],
'positions': [10, 90],
}
})
For example:
chart.add_series({
'values': '=Sheet1!$A$1:$A$5',
'gradient': {
'colors': ['#DDEBCF', '#9CB86E', '#156B13'],
'type': 'radial'
}
})
The following font properties can be set for any chart object that they apply to (and that are sup-
ported by XlsxWriter) such as chart titles, axis labels, axis numbering and data labels:
name
size
bold
italic
underline
rotation
color
These properties correspond to the equivalent Worksheet cell Format object properties. See the
The Format Class section for more details about Format properties and how to set them.
The following explains the available font properties:
• name: Set the font name:
chart.set_x_axis({'num_font': {'name': 'Arial'}})
• rotation: Set the font rotation, angle, property in the integer range -90 to 90 deg, and
270-271 deg:
chart.set_x_axis({'num_font': {'rotation': 45}})
The font rotation angle is useful for displaying axis data such as dates in a more compact
format.
There are 2 special case angles outside the range -90 to 90:
– 270: Stacked text, where the text runs from top to bottom.
– 271: A special variant of stacked text for East Asian fonts.
• color: Set the font color property. Can be a color index, a color name or HTML style RGB
color:
chart.set_x_axis({'num_font': {'color': 'red' }})
chart.set_y_axis({'num_font': {'color': '#92D050'}})
chart.set_x_axis({
'name': 'Month',
'name_font': {
'name': 'Courier New',
'color': '#92D050'
},
'num_font': {
'name': 'Arial',
'color': '#00B0F0',
},
})
chart.set_y_axis({
'name': 'Units',
'name_font': {
'name': 'Century',
'color': 'red'
},
'num_font': {
'bold': True,
'italic': True,
'underline': True,
'color': '#7030A0',
},
})
The position of the chart in the worksheet is controlled by the set_size() method.
It is also possible to change the layout of the following chart sub-objects:
plotarea
legend
title
x_axis caption
y_axis caption
chart.set_plotarea({
'layout': {
'x': 0.13,
'y': 0.26,
'width': 0.73,
'height': 0.57,
}
})
chart.set_legend({
'layout': {
'x': 0.80,
'y': 0.37,
'width': 0.12,
'height': 0.25,
}
})
chart.set_title({
'name': 'Title',
'overlay': True,
'layout': {
'x': 0.42,
'y': 0.14,
}
})
chart.set_x_axis({
'name': 'X axis',
'name_layout': {
'x': 0.34,
'y': 0.85,
}
})
Note: It is only possible to change the width and height for the plotarea and legend objects.
For the other text based objects the width and height are changed by the font dimensions.
The layout units must be a float in the range 0 < x <= 1 and are expressed as a percentage of
the chart dimensions as shown below:
These units are cumbersome and can vary depending on other elements in the chart such as text
lengths. However, these are the units that are required by Excel to allow relative positioning. Some
trial and error is generally required.
Note: The plotarea origin is the top left corner in the plotarea itself and does not take into
account the axes.
Date Category Axes are category axes that display time or date information. In XlsxWriter Date
Category Axes are set using the date_axis option in set_x_axis() or set_y_axis():
chart.set_x_axis({'date_axis': True})
In general you should also specify a number format for a date axis although Excel will usually
default to the same format as the data being plotted:
chart.set_x_axis({
'date_axis': True,
'num_format': 'dd/mm/yyyy',
})
Excel doesn’t normally allow minimum and maximum values to be set for category axes. However,
date axes are an exception. The min and max values should be set as Excel times or dates:
chart.set_x_axis({
'date_axis': True,
'min': date(2013, 1, 2),
'max': date(2013, 1, 9),
'num_format': 'dd/mm/yyyy',
})
For date axes it is also possible to set the type of the major and minor units:
chart.set_x_axis({
'date_axis': True,
'minor_unit': 4,
'minor_unit_type': 'months',
'major_unit': 1,
'major_unit_type': 'years',
'num_format': 'dd/mm/yyyy',
})
It is possible to add a secondary axis of the same type to a chart by setting the y2_axis or
x2_axis property of the series:
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_secondary_axis.xlsx')
worksheet = workbook.add_worksheet()
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
]
worksheet.write_column('A2', data[0])
worksheet.write_column('B2', data[1])
chart.set_legend({'position': 'none'})
worksheet.insert_chart('D2', chart)
workbook.close()
It is also possible to have a secondary, combined, chart either with a shared or secondary axis,
see below.
It is also possible to combine two different chart types, for example a column and line chart to
create a Pareto chart using the Chart combine() method:
The combined charts can share the same Y axis like the following example:
# Usual setup to create workbook and add data...
# Create a new column chart. This will use this as the primary chart.
column_chart = workbook.add_chart({'type': 'column'})
# Create a new column chart. This will use this as the secondary chart.
line_chart = workbook.add_chart({'type': 'line'})
# Add a chart title and some axis labels. Note, this is done via the
# primary chart.
column_chart.set_title({ 'name': 'Combined chart - same Y axis'})
column_chart.set_x_axis({'name': 'Test number'})
column_chart.set_y_axis({'name': 'Sample length (mm)'})
The secondary chart can also be placed on a secondary axis using the methods shown in the
previous section.
In this case it is just necessary to add a y2_axis parameter to the series and, if required, add a
title using set_y2_axis(). The following are the additions to the previous example to place the
secondary chart on the secondary axis:
# ...
line_chart.add_series({
'name': '=Sheet1!C1',
'categories': '=Sheet1!A2:A7',
'values': '=Sheet1!C2:C7',
'y2_axis': True,
})
The examples above use the concept of a primary and secondary chart. The primary chart is the
chart that defines the primary X and Y axis. It is also used for setting all chart properties apart
from the secondary data series. For example the chart title and axes properties should be set via
the primary chart.
See also Example: Combined Chart and Example: Pareto Chart for more detailed examples.
There are some limitations on combined charts:
• Pie charts cannot currently be combined.
• Scatter charts cannot currently be used as a primary chart but they can be used as a sec-
ondary chart.
• Bar charts can only combined secondary charts on a secondary axis. This is an Excel
limitation.
18.20 Chartsheets
The examples shown above and in general the most common type of charts in Excel are embed-
ded charts.
However, it is also possible to create “Chartsheets” which are worksheets that are comprised of a
single chart:
Charts can by created from Worksheet Tables. However, Excel has a limitation where the data
series name, if specified, must refer to a cell within the table (usually one of the headers).
To workaround this Excel limitation you can specify a user defined name in the table and refer to
that from the chart:
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_pie.xlsx')
worksheet = workbook.add_worksheet()
data = [
['Apple', 60],
['Cherry', 30],
['Pecan', 10],
]
chart.add_series({
'name': '=Sheet1!$A$1',
'categories': '=Sheet1!$A$2:$A$4',
'values': '=Sheet1!$B$2:$B$4',
})
worksheet.insert_chart('D2', chart)
workbook.close()
NINETEEN
XlsxWriter positions worksheet objects such as images, charts and textboxes in worksheets by
calculating precise co-ordinates based on the object size, it’s DPI (for images) and any scaling
that the user specifies. It also takes into account the heights and widths of the rows and columns
that the object crosses. In this way objects maintain their original sizes even if the rows or columns
underneath change size or are hidden.
For example:
import xlsxwriter
workbook = xlsxwriter.Workbook('image.xlsx')
worksheet = workbook.add_worksheet()
# Original image.
worksheet.insert_image('B2', 'logo.png')
workbook.close()
255
Creating Excel files with Python and XlsxWriter, Release 1.2.9
As can be seen the inserted image sizes are the same even though the second image crosses
changed rows and columns.
However, there are two cases where the image scale may change with row or columns changes.
These are explained in the next two sections.
The scaling of a image may be affected if is crosses a row that has its default height changed due
to a font that is larger than the default font size or that has text wrapping turned on. In these cases
Excel will automatically calculate a row height based on the text when it loads the file. Since this
row height isn’t available to XlsxWriter when it creates the file the object may appear as if it is sized
incorrectly. For example:
import xlsxwriter
workbook = xlsxwriter.Workbook('image.xlsx')
worksheet = workbook.add_worksheet()
wrap_format = workbook.add_format({'text_wrap': True})
worksheet.insert_image('B2', 'logo.png')
worksheet.insert_image('B8', 'logo.png')
workbook.close()
As can be seen the second inserted image is distorted, compared to the first, due to the row being
scaled automatically. To avoid this you should explicitly set the height of the row using set_row()
if it crosses an inserted object.
Image, chart and textbox objects in XlsxWriter emulate these options using the ob-
ject_position parameter:
worksheet.insert_image('B3', 'python.png', {'object_position': 1})
Option 4 appears in Excel as Option 1. However, the worksheet object is sized to take hidden
rows or columns into account. This allows the user to hide an image in a cell, possibly as part of
an autofilter. For example:
import xlsxwriter
workbook = xlsxwriter.Workbook('image.xlsx')
worksheet = workbook.add_worksheet()
worksheet.insert_image('B2', 'logo.png')
worksheet.insert_image('B9', 'logo.png', {'object_position': 4})
workbook.close()
In this example the first inserted image is visible over the hidden rows whilst the second image is
hidden with the rows. Unhiding the rows in Excel would reveal the second image.
When an image is imported into Excel the DPI (dots per inch) resolution of the image is taken
into account. Excel sizes the image according to a base DPI of 96. Therefore an image with a
DPI of 72 may appear slightly larger when imported into Excel while an image with a DPI of 200
may appear twice as small. XlsxWriter also reads the DPI of the images that the user inserts
into a worksheet and stores the image dimensions in the same way that Excel does. If it cannot
determine the DPI of the image it uses a default of 96.
A lot of work has gone into ensuring that XlsxWriter inserts images into worksheets in exactly the
same way that Excel does, even though the required calculations and units are arcane. There
are over 80 test cases that check image insertion against files created in Excel to ensure that
XlsxWriter’s handling of images is correct.
As such, before reporting any issues with image handling in XlsxWriter please check how the
same image is handled in Excel (not OpenOffice, LibreOffice or other third party applications). If
you do report an issue please use the XlsxWriter Issue tracker is on GitHub and attach the image
that demonstrates the issue.
TWENTY
An autofilter in Excel is a way of filtering a 2D range of data based on some simple criteria.
The first step is to apply an autofilter to a cell range in a worksheet using the autofilter()
method:
worksheet.autofilter('A1:D11')
261
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The autofilter() defines the cell range that the filter applies to and creates drop-down se-
lectors in the heading row. In order to filter out data it is necessary to apply some criteria to the
columns using either the filter_column() or filter_column_list() methods.
The filter_column method is used to filter columns in a autofilter range based on simple crite-
ria:
worksheet.filter_column('A', 'x > 2000')
worksheet.filter_column('B', 'x > 2000 and x < 5000')
It isn’t sufficient to just specify the filter condition. You must also hide any rows that don’t match the
filter condition. Rows are hidden using the set_row() hidden parameter. XlsxWriter cannot
filter rows automatically since this isn’t part of the file format.
The following is an example of how you might filter a data range to match an autofilter criteria:
# Set the autofilter.
worksheet.autofilter('A1:D51')
worksheet.write_row(row, 0, row_data)
The filter_column() method can be used to filter columns in a autofilter range based on
simple conditions:
worksheet.filter_column('A', 'x > 2000')
The column parameter can either be a zero indexed column number or a string column name.
The following operators are available for setting the filter criteria:
Operator
==
!=
>
<
>=
<=
and
or
An expression can comprise a single statement or two statements separated by the and and or
operators. For example:
'x < 2000'
'x > 2000'
'x == 2000'
'x > 2000 and x < 5000'
'x == 2000 or x == 5000'
Filtering of blank or non-blank data can be achieved by using a value of Blanks or NonBlanks
in the expression:
'x == Blanks'
'x == NonBlanks'
You can also use ’*’ to match any character or number and ’?’ to match any single character
or number. No other regular expression quantifier is supported by Excel’s filters. Excel’s regular
expression characters can be escaped using ’~’.
The placeholder variable x in the above examples can be replaced by any simple string. The
actual placeholder name is ignored internally so the following are all equivalent:
A filter condition can only be applied to a column in a range specified by the autofilter()
method.
Prior to Excel 2007 it was only possible to have either 1 or 2 filter conditions such as the ones
shown above in the filter_column() method.
Excel 2007 introduced a new list style filter where it is possible to specify 1 or more ‘or’ style
criteria. For example if your column contained data for the months of the year you could filter the
data based on certain months:
As explained above, it isn’t sufficient to just specify filters. You must also hide any rows that don’t
match the filter condition.
20.5 Example
See Example: Applying Autofilters for a full example of all these features.
TWENTYONE
Data validation is a feature of Excel which allows you to restrict the data that a user enters in a cell
and to display associated help and warning messages. It also allows you to restrict input to values
in a dropdown list.
A typical use case might be to restrict data in a cell to integer values in a certain range, to provide
a help message to indicate the required value and to issue a warning if the input data doesn’t meet
the stated criteria. In XlsxWriter we could do that as follows:
worksheet.data_validation('B25', {'validate': 'integer',
'criteria': 'between',
'minimum': 1,
'maximum': 100,
'input_title': 'Enter an integer:',
'input_message': 'between 1 and 100'})
267
Creating Excel files with Python and XlsxWriter, Release 1.2.9
If the user inputs a value that doesn’t match the specified criteria an error message is displayed:
For more information on data validation see the Microsoft support article “Description and exam-
ples of data validation in Excel”: http://support.microsoft.com/kb/211485.
The following sections describe how to use the data_validation() method and its various
options.
21.1 data_validation()
validate
criteria
value minimum source
maximum
ignore_blank
dropdown
input_title
input_message
show_input
error_title
error_message
error_type
show_error
These parameters are explained in the following sections. Most of the parameters are optional,
however, you will generally require the three main options validate, criteria and value:
worksheet.data_validation('A1', {'validate': 'integer',
'criteria': '>',
'value': 100})
21.1.1 validate
The validate parameter is used to set the type of data that you wish to validate:
worksheet.data_validation('A1', {'validate': 'integer',
'criteria': '>',
'value': 100})
• integer: restricts the cell to integer values. Excel refers to this as ‘whole number’.
• decimal: restricts the cell to decimal values.
• list: restricts the cell to a set of user specified values. These can be passed in a Python list
or as an Excel cell range.
• date: restricts the cell to date values specified as a datetime object as shown in Working
with Dates and Time or a date formula.
• time: restricts the cell to time values specified as a datetime object as shown in Working
with Dates and Time or a time formula.
• length: restricts the cell data based on an integer string length. Excel refers to this as ‘Text
length’.
• custom: restricts the cell based on an external Excel formula that returns a TRUE/FALSE
value.
• any: is used to specify that the type of data is unrestricted. It is mainly used for specifying
cell input messages without a data validation.
21.1.2 criteria
The criteria parameter is used to set the criteria by which the data in the cell is validated. It is
almost always required except for the list, custom and any validate options. It has no default
value:
worksheet.data_validation('A1', {'validate': 'integer',
'criteria': '>',
'value': 100})
The list, custom and any validate options don’t require a criteria. If you specify one it will
be ignored:
worksheet.data_validation('B13', {'validate': 'list',
'source': ['open', 'high', 'close']})
The value parameter is used to set the limiting value to which the criteria is applied. It is
always required and it has no default value. You can also use the synonyms minimum or source
to make the validation a little clearer and closer to Excel’s description of the parameter:
# Using 'value'.
worksheet.data_validation('A1', {'validate': 'integer',
'criteria': 'greater than',
'value': 100})
# Using 'minimum'.
worksheet.data_validation('B11', {'validate': 'decimal',
'criteria': 'between',
'minimum': 0.1,
'maximum': 0.5})
# Using 'source'.
worksheet.data_validation('B10', {'validate': 'list',
'source': '=$E$4:$G$4'})
Note, when using the list validation with a list of strings, like in the last example above, Excel
stores the strings internally as a Comma Separated Variable string. The total length for this string,
including commas, cannot exceed the Excel limit of 255 characters. For longer sets of data you
should use a range reference like the prior example above.
21.1.4 maximum
The maximum parameter is used to set the upper limiting value when the criteria is either
’between’ or ’not between’:
worksheet.data_validation('B11', {'validate': 'decimal',
'criteria': 'between',
'minimum': 0.1,
'maximum': 0.5})
21.1.5 ignore_blank
The ignore_blank parameter is used to toggle on and off the ‘Ignore blank’ option in the Excel
data validation dialog. When the option is on the data validation is not applied to blank data in the
cell. It is on by default:
worksheet.data_validation('B5', {'validate': 'integer',
'criteria': 'between',
'minimum': 1,
'maximum': 10,
'ignore_blank': False,
})
21.1.6 dropdown
The dropdown parameter is used to toggle on and off the ‘In-cell dropdown’ option in the Excel
data validation dialog. When the option is on a dropdown list will be shown for list validations. It
is on by default.
21.1.7 input_title
The input_title parameter is used to set the title of the input message that is displayed when
a cell is entered. It has no default value and is only displayed if the input message is displayed.
See the input_message parameter below.
The maximum title length is 32 characters.
21.1.8 input_message
The input_message parameter is used to set the input message that is displayed when a cell is
entered. It has no default value:
worksheet.data_validation('B25', {'validate': 'integer',
'criteria': 'between',
'minimum': 1,
'maximum': 100,
'input_title': 'Enter an integer:',
'input_message': 'between 1 and 100'})
The message can be split over several lines using newlines. The maximum message length is 255
characters.
21.1.9 show_input
The show_input parameter is used to toggle on and off the ‘Show input message when cell is
selected’ option in the Excel data validation dialog. When the option is off an input message is not
displayed even if it has been set using input_message. It is on by default.
21.1.10 error_title
The error_title parameter is used to set the title of the error message that is displayed when
the data validation criteria is not met. The default error title is ‘Microsoft Excel’. The maximum title
length is 32 characters.
21.1.11 error_message
The error_message parameter is used to set the error message that is displayed when a cell is
entered. The default error message is “The value you entered is not valid. A user has restricted
values that can be entered into the cell.”. A non-default error message can be displayed as follows:
The message can be split over several lines using newlines. The maximum message length is 255
characters.
21.1.12 error_type
The error_type parameter is used to specify the type of error dialog that is displayed. There
are 3 options:
'stop'
'warning'
'information'
21.1.13 show_error
The show_error parameter is used to toggle on and off the ‘Show error alert after invalid data is
entered’ option in the Excel data validation dialog. When the option is off an error message is not
displayed even if it has been set using error_message. It is on by default.
Example 2. Limiting input to an integer greater than a fixed value where the value is referenced
from a cell:
worksheet.data_validation('A2', {'validate': 'integer',
'criteria': '>',
'value': '=E3',
})
Example 5. Limiting input to a value in a dropdown list where the list is specified as a cell range:
worksheet.data_validation('A5', {'validate': 'list',
'source': '=$E$4:$G$4',
})
TWENTYTWO
Conditional formatting is a feature of Excel which allows you to apply a format to a cell or a range
of cells based on certain criteria.
For example the following rules are used to highlight cells in the conditional_format.py example:
worksheet.conditional_format('B3:K12', {'type': 'cell',
'criteria': '>=',
'value': 50,
'format': format1})
279
Creating Excel files with Python and XlsxWriter, Release 1.2.9
281
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The conditional_format() worksheet method is used to apply formatting based on user de-
fined criteria to an XlsxWriter file.
The conditional format can be applied to a single cell or a range of cells. As usual you can use A1
or Row/Column notation (Working with Cell Notation).
With Row/Column notation you must specify all four cells in the range: (first_row,
first_col, last_row, last_col). If you need to refer to a single cell set the last_*
values equal to the first_* values. With A1 notation you can refer to a single cell or a range of
cells:
worksheet.conditional_format(0, 0, 4, 1, {...})
worksheet.conditional_format('B1', {...})
worksheet.conditional_format('C1:E5', {...})
• criteria
• value
• minimum
• maximum
Other, less commonly used parameters are:
• min_type
• mid_type
• max_type
• min_value
• mid_value
• max_value
• min_color
• mid_color
• max_color
• bar_color
• bar_only
• bar_solid
• bar_negative_color
• bar_border_color
• bar_negative_border_color
• bar_negative_color_same
• bar_negative_border_color_same
• bar_no_border
• bar_direction
• bar_axis_position
• bar_axis_color
• data_bar_2010
• icon_style
• icons
• reverse_icons
• icons_only
• stop_if_true
• multi_range
The conditional format options that can be used with conditional_format() are explained in
the following sections.
22.2.1 type
The type option is a required parameter and it has no default value. Allowable type values and
their associated parameters are:
Type Parameters
cell criteria
value
minimum
maximum
format
date criteria
value
minimum
maximum
format
time_period criteria
format
text criteria
value
format
average criteria
format
duplicate format
unique format
top criteria
value
format
bottom criteria
value
format
blanks format
no_blanks format
errors format
no_errors format
formula criteria
format
2_color_scale min_type
Continued on next page
Note: Data bar parameters marked with (*) are only available in Excel 2010 and later. Files that
use these properties can still be opened in Excel 2007 but the data bars will be displayed without
them.
This is the most common conditional formatting type. It is used when a format is applied to a cell
based on a simple criterion.
For example using a single cell and the greater than criteria:
worksheet.conditional_format('A1', {'type': 'cell',
'criteria': 'greater than',
'value': 5,
'format': red_format})
Other types are shown below, after the other main options.
22.2.3 criteria:
The criteria parameter is used to set the criteria by which the cell data will be evaluated. It has
no default value. The most common criteria as applied to {’type’: ’cell’} are:
between
not between
equal to ==
not equal to !=
greater than >
less than <
greater than or equal to >=
less than or equal to <=
You can either use Excel’s textual description strings, in the first column above, or the more com-
mon symbolic alternatives.
Additional criteria which are specific to other conditional format types are shown in the relevant
sections below.
22.2.4 value:
The value is generally used along with the criteria parameter to set the rule by which the cell
data will be evaluated:
worksheet.conditional_format('A1', {'type': 'cell',
'criteria': 'equal to',
'value': 5,
'format': red_format})
If the type is cell and the value is a string then it should be double quoted, as required by
Excel:
worksheet.conditional_format('A1', {'type': 'cell',
'criteria': 'equal to',
'value': '"Failed"',
'format': red_format})
Note: In general any value property that refers to a cell reference should use an absolute
reference, especially if the conditional formatting is applied to a range of values. Without an
absolute cell reference the conditional format will not be applied correctly by Excel from the first
cell in the formatted range.
22.2.5 format:
The format parameter is used to specify the format that will be applied to the cell when the
conditional formatting criterion is met. The format is created using the add_format() method in
the same way as cell formats:
format1 = workbook.add_format({'bold': 1, 'italic': 1})
Note: In Excel, a conditional format is superimposed over the existing cell format and not all cell
format properties can be modified. Properties that cannot be modified in a conditional format are
font name, font size, superscript and subscript, diagonal borders, all alignment properties and all
protection properties.
Excel specifies some default formats to be used with conditional formatting. These can be repli-
cated using the following XlsxWriter formats:
# Light red fill with dark red text.
format1 = workbook.add_format({'bg_color': '#FFC7CE',
'font_color': '#9C0006'})
22.2.6 minimum:
The minimum parameter is used to set the lower limiting value when the criteria is either
’between’ or ’not between’:
worksheet.conditional_format('A1', {'type': 'cell',
'criteria': 'between',
'minimum': 2,
'maximum': 6,
'format': format1,
})
22.2.7 maximum:
The maximum parameter is used to set the upper limiting value when the criteria is either
’between’ or ’not between’. See the previous example.
The date type is similar the cell type and uses the same criteria and values. However, the
value, minimum and maximum properties are specified as a datetime object as shown in Working
with Dates and Time:
date = datetime.datetime.strptime('2011-01-01', "%Y-%m-%d")
The time_period type is used to specify Excel’s “Dates Occurring” style conditional format:
worksheet.conditional_format('A1:A4', {'type': 'time_period',
'criteria': 'yesterday',
'format': format1})
The period is set in the criteria and can have one of the following values:
'criteria': 'yesterday',
'criteria': 'today',
'criteria': 'last 7 days',
'criteria': 'last week',
'criteria': 'this week',
'criteria': 'next week',
'criteria': 'last month',
'criteria': 'this month',
'criteria': 'next month'
The text type is used to specify Excel’s “Specific Text” style conditional format. It is used to do
simple string matching using the criteria and value parameters:
worksheet.conditional_format('A1:A4', {'type': 'text',
'criteria': 'containing',
'value': 'foo',
'format': format1})
The average type is used to specify Excel’s “Average” style conditional format:
worksheet.conditional_format('A1:A4', {'type': 'average',
'criteria': 'above',
'format': format1})
The type of average for the conditional format range is specified by the criteria:
'criteria': 'above',
'criteria': 'below',
'criteria': 'equal or above',
'criteria': 'equal or below',
'criteria': '1 std dev above',
'criteria': '1 std dev below',
'criteria': '2 std dev above',
'criteria': '2 std dev below',
'criteria': '3 std dev above',
'criteria': '3 std dev below',
The top type is used to specify the top n values by number or percentage in a range:
worksheet.conditional_format('A1:A4', {'type': 'top',
'value': 10,
'format': format1})
The bottom type is used to specify the bottom n values by number or percentage in a range.
It takes the same parameters as top, see above.
The formula type is used to specify a conditional format based on a user defined formula:
worksheet.conditional_format('A1:A4', {'type': 'formula',
'criteria': '=$A$1>5',
'format': format1})
Also, any cell or range references in the formula should be absolute references if they are applied
to the full range of the conditional format. See the note in the value section above.
The 2_color_scale type is used to specify Excel’s “2 Color Scale” style conditional format:
worksheet.conditional_format('A1:A12', {'type': '2_color_scale'})
This conditional type can be modified with min_type, max_type, min_value, max_value,
min_color and max_color, see below.
The 3_color_scale type is used to specify Excel’s “3 Color Scale” style conditional format:
worksheet.conditional_format('A1:A12', {'type': '3_color_scale'})
This conditional type can be modified with min_type, mid_type, max_type, min_value,
mid_value, max_value, min_color, mid_color and max_color, see below.
The data_bar type is used to specify Excel’s “Data Bar” style conditional format:
worksheet.conditional_format('A1:A12', {'type': 'data_bar'})
This conditional type can be modified with the following parameters, which are explained in the
sections below. These properties were available in the original xlsx file specification used in Excel
2007:
min_type
max_type
min_value
max_value
bar_color
bar_only
In Excel 2010 additional data bar properties were added such as solid (non-gradient) bars and
control over how negative values are displayed. These properties can be set using the following
parameters:
bar_solid
bar_negative_color
bar_border_color
bar_negative_border_color
bar_negative_color_same
bar_negative_border_color_same
bar_no_border
bar_direction
bar_axis_position
bar_axis_color
data_bar_2010
Files that use these Excel 2010 properties can still be opened in Excel 2007 but the data bars will
be displayed without them.
The icon_set type is used to specify a conditional format with a set of icons such as traffic lights
or arrows:
worksheet.conditional_format('A1:C1', {'type': 'icon_set',
'icon_style': '3_traffic_lights'})
The icon set style is specified by the icon_style parameter. Valid options are:
3_arrows
3_arrows_gray
3_flags
3_signs
3_symbols
3_symbols_circled
3_traffic_lights
3_traffic_lights_rimmed
4_arrows
4_arrows_gray
4_ratings
4_red_to_black
4_traffic_lights
5_arrows
5_arrows_gray
5_quarters
5_ratings
The criteria, type and value of each icon can be specified using the icon array of dicts with
optional criteria, type and value parameters:
worksheet.conditional_format(
'A1:D1',
{'type': 'icon_set',
'icon_style': '4_red_to_black',
'icons': [{'criteria': '>=', 'type': 'number', 'value': 90},
{'criteria': '<', 'type': 'percentile', 'value': 50},
{'criteria': '<=', 'type': 'percent', 'value': 25}]}
)
• The icons criteria parameter should be either >= or <. The default criteria is >=.
• The icons type parameter should be one of the following values:
number
percentile
percent
formula
worksheet.conditional_format('A1:D1',
{'type': 'icon_set',
'icon_style': '4_red_to_black',
'icons': [{'value': 90},
{'value': 50},
{'value': 25}]})
Note: The icons parameters should start with the highest value and with each subsequent one
being lower. The default value is (n * 100) / number_of_icons. The lowest number icon
in an icon set has properties defined by Excel. Therefore in a n icon set, there is no n-1 hash of
parameters.
The order of the icons can be reversed using the reverse_icons parameter:
worksheet.conditional_format('A1:C1',
{'type': 'icon_set',
'icon_style': '3_arrows',
'reverse_icons': True})
The icons can be displayed without the cell value using the icons_only parameter:
worksheet.conditional_format('A1:C1',
{'type': 'icon_set',
'icon_style': '3_flags',
'icons_only': True})
22.2.25 min_type:
The min_type and max_type properties are available when the conditional formatting
type is 2_color_scale, 3_color_scale or data_bar. The mid_type is available for
3_color_scale. The properties are used as follows:
worksheet.conditional_format('A1:A12', {'type': '2_color_scale',
'min_type': 'percent',
'max_type': 'percent'})
22.2.26 mid_type:
22.2.27 max_type:
22.2.28 min_value:
The min_value and max_value properties are available when the conditional formatting
type is 2_color_scale, 3_color_scale or data_bar. The mid_value is available for
3_color_scale. The properties are used as follows:
worksheet.conditional_format('A1:A12', {'type': '2_color_scale',
'min_value': 10,
'max_value': 90})
22.2.29 mid_value:
22.2.30 max_value:
22.2.31 min_color:
The min_color and max_color properties are available when the conditional formatting
type is 2_color_scale, 3_color_scale or data_bar. The mid_color is available for
3_color_scale. The properties are used as follows:
worksheet.conditional_format('A1:A12', {'type': '2_color_scale',
'min_color': '#C5D9F1',
'max_color': '#538ED5'})
The color can be a Html style #RRGGBB string or a limited number named colors, see Working with
Colors.
22.2.32 mid_color:
22.2.33 max_color:
22.2.34 bar_color:
The bar_color parameter sets the fill color for data bars:
worksheet.conditional_format('F3:F14', {'type': 'data_bar',
'bar_color': '#63C384'})
The color can be a Html style #RRGGBB string or a limited number named colors, see Working with
Colors.
22.2.35 bar_only:
The bar_only property displays a bar data but not the data in the cells:
worksheet.conditional_format('D3:D14', {'type': 'data_bar',
'bar_only': True})
22.2.36 bar_solid:
The bar_solid property turns on a solid (non-gradient) fill for data bars:
22.2.37 bar_negative_color:
The bar_negative_color property sets the color fill for the negative portion of a data bar:
worksheet.conditional_format('F3:F14', {'type': 'data_bar',
'bar_negative_color': '#63C384'})
The color can be a Html style #RRGGBB string or a limited number named colors, see Working with
Colors.
Note, this property is only visible in Excel 2010 and later.
22.2.38 bar_border_color:
The bar_border_color property sets the color for the border line of a data bar:
worksheet.conditional_format('F3:F14', {'type': 'data_bar',
'bar_border_color': '#63C384'})
The color can be a Html style #RRGGBB string or a limited number named colors, see Working with
Colors.
Note, this property is only visible in Excel 2010 and later.
22.2.39 bar_negative_border_color:
The bar_negative_border_color property sets the color for the border of the negative por-
tion of a data bar:
worksheet.conditional_format('F3:F14', {'type': 'data_bar',
'bar_negative_border_color': '#63C384'})
The color can be a Html style #RRGGBB string or a limited number named colors, see Working with
Colors.
Note, this property is only visible in Excel 2010 and later.
22.2.40 bar_negative_color_same:
The bar_negative_color_same property sets the fill color for the negative portion of a data
bar to be the same as the fill color for the positive portion of the data bar:
22.2.41 bar_negative_border_color_same:
The bar_negative_border_color_same property sets the border color for the negative por-
tion of a data bar to be the same as the border color for the positive portion of the data bar:
worksheet.conditional_format('F3:F14', {'type': 'data_bar',
'bar_negative_border_color_same': True})
22.2.42 bar_no_border:
The bar_no_border property turns off the border for data bars:
Note, this property is only visible in Excel 2010 and later, however the default in Excel 2007 is to
not have a border.
22.2.43 bar_direction:
The bar_direction property sets the direction for data bars. This property can be either left
for left-to-right or right for right-to-left. If the property isn’t set then Excel will adjust the position
automatically based on the context:
worksheet.conditional_format('J3:J14', {'type': 'data_bar',
'bar_direction': 'right'})
22.2.44 bar_axis_position:
The bar_axis_position property sets the position within the cells for the axis that is shown in
data bars when there are negative values to display. The property can be either middle or none.
If the property isn’t set then Excel will position the axis based on the range of positive and negative
values:
worksheet.conditional_format('J3:J14', {'type': 'data_bar',
'bar_axis_position': 'middle'})
22.2.45 bar_axis_color:
The bar_axis_color property sets the color for the axis that is shown in data bars when there
are negative values to display:
worksheet.conditional_format('J3:J14', {'type': 'data_bar',
'bar_axis_color': '#0070C0'})
22.2.46 data_bar_2010:
The data_bar_2010 property sets Excel 2010 style data bars even when Excel 2010 specific
properties aren’t used. This can be used for consistency across all the data bar formatting in a
worksheet:
worksheet.conditional_format('L3:L14', {'type': 'data_bar',
'data_bar_2010': True})
22.2.47 stop_if_true
The stop_if_true parameter can be used to set the “stop if true” feature of a conditional for-
matting rule when more than one rule is applied to a cell or a range of cells. When this parameter
is set then subsequent rules are not evaluated if the current rule is true:
worksheet.conditional_format('A1',
{'type': 'cell',
'format': cell_format,
'criteria': '>',
'value': 20,
'stop_if_true': True
})
22.2.48 multi_range:
The multi_range option is used to extend a conditional format over non-contiguous ranges.
It is possible to apply the conditional format to different cell ranges in a worksheet using multiple
calls to conditional_format(). However, as a minor optimization it is also possible in Excel
to apply the same conditional format to different non-contiguous cell ranges.
This is replicated in conditional_format() using the multi_range option. The range must
contain the primary range for the conditional format and any others separated by spaces.
For example to apply one conditional format to two ranges, ’B3:K6’ and ’B9:K12’:
worksheet.conditional_format('B3:K6', {'type': 'cell',
'criteria': '>=',
'value': 50,
'format': format1,
'multi_range': 'B3:K6 B9:K12'})
Highlight cells that are 1 standard deviation above the average for the range:
TWENTYTHREE
Tables in Excel are a way of grouping a range of cells into a single entity that has common format-
ting or that can be referenced from formulas. Tables can have column headers, autofilters, total
rows, column formulas and default formatting.
For more information see An Overview of Excel Tables in the Microsoft Office documentation.
305
Creating Excel files with Python and XlsxWriter, Release 1.2.9
23.1 add_table()
The data range can be specified in ‘A1’ or ‘Row/Column’ notation (see Working with Cell Notation):
worksheet.add_table('B3:F7')
# Same as:
worksheet.add_table(2, 1, 6, 5)
The options parameter should be a dict containing the parameters that describe the table options
and data. The available options are:
data
autofilter
header_row
banded_columns
banded_rows
first_column
last_column
style
total_row
columns
name
These options are explained below. There are no required parameters and the options parameter
is itself optional if no options are specified (as shown above).
23.2 data
The data parameter can be used to specify the data in the cells of the table:
data = [
['Apples', 10000, 5000, 8000, 6000],
['Pears', 2000, 3000, 4000, 5000],
['Bananas', 6000, 6000, 6500, 6000],
['Oranges', 500, 300, 200, 700],
Writing the cell data separately is occasionally required when you need to control the write_()
methods used to populate the cells or if you wish to modify individual cell formatting.
The data structure should be an list of lists holding row data as shown above.
23.3 header_row
The header_row parameter can be used to turn on or off the header row in the table. It is on by
default:
# Turn off the header row.
worksheet.add_table('B4:F7', {'header_row': False})
The header row will contain default captions such as Column 1, Column 2, etc. These captions
can be overridden using the columns parameter below.
23.4 autofilter
The autofilter parameter can be used to turn on or off the autofilter in the header row. It is on
by default:
# Turn off the default autofilter.
worksheet.add_table('B3:F7', {'autofilter': False})
The autofilter is only shown if the header_row is on. Filter conditions within the table are
not supported.
23.5 banded_rows
The banded_rows parameter can be used to create rows of alternating color in the table. It is on
by default:
# Turn off banded rows.
worksheet.add_table('B3:F7', {'banded_rows': False})
23.6 banded_columns
The banded_columns parameter can be used to used to create columns of alternating color in
the table. It is off by default:
# Turn on banded columns.
worksheet.add_table('B3:F7', {'banded_columns': True})
23.7 first_column
The first_column parameter can be used to highlight the first column of the table. The type of
highlighting will depend on the style of the table. It may be bold text or a different color. It is off
by default:
# Turn on highlighting for the first column in the table.
worksheet.add_table('B3:F7', {'first_column': True})
23.8 last_column
The last_column parameter can be used to highlight the last column of the table. The type of
highlighting will depend on the style of the table. It may be bold text or a different color. It is off
by default:
# Turn on highlighting for the last column in the table.
worksheet.add_table('B3:F7', {'last_column': True})
23.9 style
The style parameter can be used to set the style of the table. Standard Excel table format names
should be used (with matching capitalization):
worksheet.add_table('B3:F7', {'data': data,
'style': 'Table Style Light 11'})
23.10 name
By default tables are named Table1, Table2, etc. The name parameter can be used to set the
name of the table:
worksheet.add_table('B3:F7', {'name': 'SalesData'})
If you override the table name you must ensure that it doesn’t clash with an existing table name
and that it follows Excel’s requirements for table names, see the Microsoft Office documentation.
If you need to know the name of the table, for example to use it in a formula, you can get it as
follows:
table = worksheet.add_table('B3:F7')
table_name = table.name
23.11 total_row
The total_row parameter can be used to turn on the total row in the last row of a table. It is
distinguished from the other rows by a different formatting and also with dropdown SUBTOTAL
functions:
worksheet.add_table('B3:F7', {'total_row': True})
The default total row doesn’t have any captions or functions. These must by specified via the
columns parameter below.
23.12 columns
The columns parameter can be used to set properties for columns within the table.
If you don’t wish to specify properties for a specific column you pass an empty hash ref and the
defaults will be applied:
...
columns, [
{header, 'Product'},
{header, 'Quarter 1'},
{}, # Defaults to 'Column 3'.
{header, 'Quarter 3'},
{header, 'Quarter 4'},
]
...
The Excel 2007 style [#This Row] and Excel 2010 style @ structural references are supported
within the formula. However, other Excel 2010 additions to structural references aren’t supported
and formulas should conform to Excel 2007 style formulas. See the Microsoft documentation on
Using structured references with Excel tables for details.
As stated above the total_row table parameter turns on the “Total” row in the table but it doesn’t
populate it with any defaults. Total captions and functions must be specified via the columns
property and the total_string and total_function sub properties:
options = {'data': data,
'total_row': 1,
'columns': [{'header': 'Product', 'total_string': 'Totals'},
{'header': 'Quarter 1', 'total_function': 'sum'},
{'header': 'Quarter 2', 'total_function': 'sum'},
{'header': 'Quarter 3', 'total_function': 'sum'},
{'header': 'Quarter 4', 'total_function': 'sum'},
{'header': 'Year',
'formula': '=SUM(Table10[@[Quarter 1]:[Quarter 4]])',
'total_function': 'sum'
},
]}
worksheet.add_table('B3:G8', options)
Formatting can also be applied to columns, to the column data using format and to the header
using header_format:
currency_format = workbook.add_format({'num_format': '$#,##0'})
wrap_format = workbook.add_format({'text_wrap': 1})
Standard XlsxWriter Format object objects are used for this formatting. However, they should be
limited to numerical formats for the columns and simple formatting like text wrap for the headers.
Overriding other table formatting may produce inconsistent results.
23.13 Example
All of the images shown above are taken from Example: Worksheet Tables.
TWENTYFOUR
This section explains how to work with some of the options and features of textboxes in XlsxWriter:
import xlsxwriter
workbook = xlsxwriter.Workbook('textbox.xlsx')
worksheet = workbook.add_worksheet()
options = {
'width': 256,
'height': 100,
'x_offset': 10,
'y_offset': 10,
workbook.close()
321
Creating Excel files with Python and XlsxWriter, Release 1.2.9
This insert_textbox() takes an optional dict parameter that can be used to control the size,
positioning and format of the textbox:
worksheet.insert_textbox('B2', 'Some text', {'width': 256, 'height': 100})
# Formatting
line
border
fill
gradient
font
align
text_rotation
# Links
textlink
url
tip
These options are explained in the sections below. They are similar or identical to position and
formatting parameters used in charts.
The insert_textbox() options to control the size and positioning of a textbox are:
width
height
x_scale
y_scale
x_offset
y_offset
object_position
The width and height are in pixels. The default textbox size is 192 x 120 pixels (or equivalent
to 3 default columns x 6 default rows).
The size of the textbox can be modified by setting the width and height or by setting the
x_scale and y_scale:
worksheet.insert_textbox('B2', 'Size adjusted textbox',
{'width': 288, 'height': 30})
# or ...
worksheet.insert_textbox('B2', 'Size adjusted textbox',
{'x_scale': 1.5, 'y_scale': 0.25})
The x_offset and y_offset position the top left corner of the textbox in the cell that it is inserted
into.
The object_position parameter can be used to control the object positioning of the image:
worksheet.insert_textbox('B2', "Don't move or size with cells",
{'object_position': 3})
fill
gradient
font
align
text_rotation
The line format is used to specify properties of the border in a textbox. The following properties
can be set for line formats in a textbox:
none
color
width
dash_type
The none property is uses to turn the line off (it is always on by default):
worksheet.insert_textbox('B2', 'A textbox with no border line',
{'line': {'none': True}})
The available colors are shown in the main XlsxWriter documentation. It is also possible to set the
color of a line with a Html style #RRGGBB string or a limited number of named colors, see Working
with Colors:
worksheet.insert_textbox('B2', 'A textbox with a color border',
{'line': {'color': '#FF9900'}})
The width property sets the width of the line. It should be specified in increments of 0.25 of a
point as in Excel:
worksheet.insert_textbox('B2', 'A textbox with larger border',
{'line': {'width': 3.25}})
The following dash_type values are available. They are shown in the order that they appear in
the Excel dialog:
solid
round_dot
square_dot
dash
dash_dot
long_dash
long_dash_dot
long_dash_dot_dot
The solid fill format is used to specify a fill for a textbox object.
The following properties can be set for fill formats in a textbox:
none
color
The none property is used to turn the fill property off (to make the textbox transparent):
worksheet.insert_textbox('B2', 'A textbox with no fill',
{'fill': {'none': True}})
The available colors are shown in the main XlsxWriter documentation. It is also possible to set the
color of a fill with a Html style #RRGGBB string or a limited number of named colors, see Working
with Colors:
worksheet.insert_textbox('B2', 'A textbox with color fill',
{'fill': {'color': 'red'}})
The gradient fill format is used to specify a gradient fill for a textbox. The following properties can
be set for gradient fill formats in a textbox:
colors: a list of colors
positions: an optional list of positions for the colors
type: the optional type of gradient fill
angle: the optional angle of the linear fill
If gradient fill is used on a textbox object it overrides the solid fill properties of the object.
The colors property sets a list of colors that define the gradient:
worksheet.insert_textbox('B2', 'A textbox with gradient fill',
{'gradient': {'colors': ['gray', 'white']}})
Excel allows between 2 and 10 colors in a gradient but it is unlikely that you will require more than
2 or 3.
As with solid fill it is also possible to set the colors of a gradient with a Html style #RRGGBB string
or a limited number of named colors, see Working with Colors:
worksheet.insert_textbox('B2', 'A textbox with gradient fill',
{'gradient': {'colors': ['#DDEBCF',
'#9CB86E',
'#156B13']}})
The positions defines an optional list of positions, between 0 and 100, of where the colors in
the gradient are located. Default values are provided for colors lists of between 2 and 4 but they
can be specified if required:
worksheet.insert_textbox('B2', 'A textbox with gradient fill',
{'gradient': {'colors': ['#DDEBCF', '#156B13'],
'positions': [10, 90]}})
rectangular
path
For example:
worksheet.insert_textbox('B2', 'A textbox with gradient fill',
{'gradient': {'colors': ['#DDEBCF', '#9CB86E', '#156B13'],
'type': 'radial'}})
The following font properties can be set for the entire textbox:
name
size
bold
italic
underline
color
These properties correspond to the equivalent Worksheet cell Format object properties. See the
The Format Class section for more details about Format properties and how to set them.
The font properties are:
• name: Set the font name:
{'font': {'name': 'Arial'}}
• color: Set the font color property. Can be a color index, a color name or HTML style RGB
color:
{'font': {'color': 'red' }}
{'font': {'color': '#92D050'}}
The align property is used to set the text alignment for the entire textbox:
worksheet.insert_textbox('B2', 'Alignment: middle - center',
{'align': {'vertical': 'middle',
'horizontal': 'center'}})
The alignment properties that can be set in Excel for a textbox are:
{'align': {'vertical': 'top'}} # Default
{'align': {'vertical': 'middle'}}
{'align': {'vertical': 'bottom'}}
Note, Excel doesn’t support right text alignment for the entire textbox. It does support it for text
within the textbox but that currently isn’t supported by XlsxWriter, see the next section.
The default textbox alignment is:
worksheet.insert_textbox('B2', 'Default alignment',
{'align': {'vertical': 'top',
'horizontal': 'left'}})
# Same as this:
worksheet.insert_textbox('B2', 'Default alignment')
The text_rotation option can be used to set the text rotation for the entire textbox:
Textboxes in Excel only support a limited number of rotation options. These are:
90: Rotate text up
-90: Rotate text down
270: Vertical text (stacked)
271: Vertical text (stacked) - for East Asian fonts
The textlink property is used to link/get the text for a textbox from a cell in the worksheet. When
you use this option the actual text in the textbox can be left blank or set to None:
worksheet.insert_textbox('A1', '', {'textlink': '=$A$1'})
TWENTYFIVE
Sparklines are a feature of Excel 2010+ which allows you to add small charts to worksheet cells.
These are useful for showing visual trends in data in a compact format.
The add_sparkline() worksheet method is used to add sparklines to a cell or a range of cells:
337
Creating Excel files with Python and XlsxWriter, Release 1.2.9
Both row-column and A1 style notation are supported. See Working with Cell Notation for more
details.
The parameters to add_sparkline() must be passed in a dictionary. The main sparkline pa-
rameters are:
range (required)
type
style
markers
negative_points
axis
reverse
Other, less commonly used parameters are:
location
high_point
low_point
first_point
last_point
max
min
empty_cells
show_hidden
date_axis
weight
series_color
negative_color
markers_color
first_color
last_color
high_color
low_color
Note: Sparklines are a feature of Excel 2010+ only. You can write them to an XLSX file that can
be read by Excel 2007 but they won’t be displayed.
25.2 range
The range should be a 2D array. (For 3D arrays of cells see “Grouped Sparklines” below).
If range is not on the same worksheet you can specify its location using the usual Excel notation:
worksheet.add_sparkline('F1', {'range': 'Sheet2!A1:E1'})
If the worksheet contains spaces or special characters you should quote the worksheet name in
the same way that Excel does:
worksheet.add_sparkline('F1', {'range': "'Monthly Data'!A1:E1"})
25.3 type
For example:
worksheet.add_sparkline('F2', {'range': 'A2:E2',
'type': 'column'})
25.4 style
Excel provides 36 built-in Sparkline styles in 6 groups of 6. The style parameter can be used to
replicate these and should be a corresponding number from 1 .. 36:
worksheet.add_sparkline('F2', {'range': 'A2:E2',
'type': 'column',
'style': 12})
The style number starts in the top left of the style grid and runs left to right. The default style is 1.
It is possible to override color elements of the sparklines using the _color parameters below.
25.5 markers
25.6 negative_points
Highlight negative values in a sparkline range. This is usually required with win_loss sparklines:
worksheet.add_sparkline('A9', {'range': 'Sheet2!A1:J1',
'negative_points': True})
25.7 axis
25.8 reverse
25.9 weight
Adjust the default line weight (thickness) for line style sparklines:
worksheet.add_sparkline('F2', {'range': 'A2:E2',
'weight': 0.25})
The weight value should be one of the following values allowed by Excel:
As a special case you can set the maximum and minimum to be for a group of sparklines rather
than one:
'max': 'group'
25.12 empty_cells
25.13 show_hidden
25.14 date_axis
Specify an alternative date axis for the sparkline. This is useful if the data being plotted isn’t at
fixed width intervals:
worksheet.add_sparkline('F3', {'range': 'A3:E3',
'date_axis': 'A4:E4'})
The number of cells in the date range should correspond to the number of cells in the data range.
25.15 series_color
It is possible to override the color of a sparkline style using the following parameters:
series_color
negative_color
markers_color
first_color
last_color
high_color
low_color
25.16 location
By default the sparkline location is specified by row and col in add_sparkline(). However,
for grouped sparklines it is necessary to specify more than one cell location. The location
parameter is used to specify a list of cells. See “Grouped Sparklines” below.
The add_sparkline() worksheet method can be used multiple times to write as many
sparklines as are required in a worksheet.
However, it is sometimes necessary to group contiguous sparklines so that changes that are
applied to one are applied to all. In Excel this is achieved by selecting a 3D range of cells for
the data range and a 2D range of cells for the location.
In XlsxWriter, you can simulate this by passing an array refs of values to location and range:
worksheet.add_sparkline('A27', {'location': ['A27', 'A28', 'A29'],
'range': ['A5:J5', 'A6:J6', 'A7:J7']})
TWENTYSIX
Cell comments are a way of adding notation to cells in Excel. For example:
worksheet.write('A1', 'Hello')
worksheet.write_comment('A1', 'This is a comment')
The properties of the cell comment can be modified by passing an optional dictionary of key/value
pairs to control the format of the comment. For example:
345
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The default author for all cell comments in a worksheet can be set using the
set_comments_author() method:
worksheet.set_comments_author('John Smith')
• visible: This option is used to make a cell comment visible when the worksheet is opened.
The default behavior in Excel is that comments are initially hidden. However, it is also pos-
sible in Excel to make individual comments or all comments visible. In XlsxWriter individual
comments can be made visible as follows:
worksheet.write_comment('C3', 'Hello', {'visible': True})
• x_scale: This option is used to set the width of the cell comment box as a factor of the
default width:
worksheet.write_comment('C3', 'Hello', {'x_scale': 2 })
worksheet.write_comment('C4', 'Hello', {'x_scale': 4.2})
• width: This option is used to set the width of the cell comment box explicitly in pixels:
• y_scale: This option is used to set the height of the cell comment box as a factor of the
default height:
worksheet.write_comment('C3', 'Hello', {'y_scale': 2 })
worksheet.write_comment('C4', 'Hello', {'y_scale': 4.2})
• height: This option is used to set the height of the cell comment box explicitly in pixels:
worksheet.write_comment('C3', 'Hello', {'height': 200})
• color: This option is used to set the background color of cell comment box. You can use
one of the named colors recognized by XlsxWriter or a Html color. See Working with Colors:
worksheet.write_comment('C3', 'Hello', {'color': 'green' })
worksheet.write_comment('C4', 'Hello', {'color': '#CCFFCC'})
• font_name: This option is used to set the font for the comment:
worksheet.write_comment('C3', 'Hello', {'font_name': 'Courier'})
• start_row: This option is used to set the row in which the comment will appear. See the
start_cell option above. The row is zero indexed:
worksheet.write_comment('C3', 'Hello', {'start_row': 0})
• start_col: This option is used to set the column in which the comment will appear. See
the start_cell option above. The column is zero indexed:
worksheet.write_comment('C3', 'Hello', {'start_col': 4})
• x_offset: This option is used to change the x offset, in pixels, of a comment within a cell:
worksheet.write_comment('C3', comment, {'x_offset': 30})
• y_offset: This option is used to change the y offset, in pixels, of a comment within a cell:
You can apply as many of these options as you require. For a working example of these options
in use see Example: Adding Cell Comments to Worksheets (Advanced).
Note: Excel only displays offset cell comments when they are displayed as visible. Excel
does not display hidden cells as displaced when you mouse over them. Please note this when
using options that adjust the position of the cell comment such as start_cell, start_row,
start_col, x_offset and y_offset.
Note: Row height and comments. If you specify the height of a row that contains a comment
then XlsxWriter will adjust the height of the comment to maintain the default or user specified
dimensions. However, the height of a row can also be adjusted automatically by Excel if the text
wrap property is set or large fonts are used in the cell. This means that the height of the row is
unknown to the module at run time and thus the comment box is stretched with the row. Use the
set_row() method to specify the row height explicitly and avoid this problem. See example 8 of
Example: Adding Cell Comments to Worksheets (Advanced).
TWENTYSEVEN
Excel allows you to group rows or columns so that they can be hidden or displayed with a single
mouse click. This feature is referred to as outlines and grouping.
Outlines can reduce complex data down to a few salient sub-totals or summaries. For example
the following is a worksheet with three outlines.
Rows 2 to 11 are grouped at level 1 and rows 2 to 5 and 7 to 10 are grouped at level 2. The lines at
the left hand side are called “outline level” bars and the level is shown by the small numeral above
the outline.
Clicking the minus sign on each of the level 2 outlines will collapse and hide the data as shown
349
Creating Excel files with Python and XlsxWriter, Release 1.2.9
below.
The minus sign changes to a plus sign to indicate that the data in the outline is hidden. This shows
the usefulness of outlines: with 2 mouse clicks we have reduced the amount of visual data down
to 2 sub-totals and a master total.
Finally, clicking on the minus sign on the level 1 outline will collapse the remaining rows as follows:
Grouping in XlsxWriter is achieved by setting the outline level via the set_row() and
set_column() worksheet methods:
worksheet.set_row(row, height, cell_format, options)
worksheet.set_column(first_col, last_col, width, cell_format, options)
Adjacent row or columns with the same outline level are grouped together into a single outline.
The ’options’ parameter is a dictionary with the following possible keys:
• ’hidden’
• ’level’
• ’collapsed’
Options can be set as follows:
worksheet.set_row(0, 20, cell_format, {'hidden': True})
# Or use defaults for other properties and set the options only.
worksheet.set_row(0, None, None, {'hidden': True})
The following example sets an outline level of 1 for rows 1 to 4 (zero-indexed) and columns B to
G. The parameters height and cell_format are assigned default values:
worksheet.set_row(1, None, None, {'level': 1})
worksheet.set_row(2, None, None, {'level': 1})
worksheet.set_row(3, None, None, {'level': 1})
worksheet.set_row(4, None, None, {'level': 1})
Rows and columns can be collapsed by setting the hidden flag for the hidden rows/columns and
setting the collapsed flag for the row/column that has the collapsed ’+’ symbol:
worksheet.set_row(1, None, None, {'level': 1, 'hidden': True})
worksheet.set_row(2, None, None, {'level': 1, 'hidden': True})
worksheet.set_row(3, None, None, {'level': 1, 'hidden': True})
worksheet.set_row(4, None, None, {'level': 1, 'hidden': True})
worksheet.set_row(5, None, None, {'collapsed': True})
Excel allows up to 7 outline levels. Therefore the level parameter should be in the range 0 <=
level <= 7.
For a more complete examples see Example: Outline and Grouping and Example: Collapsed
Outline and Grouping.
Some additional outline properties can be set via the outline_settings() worksheet method.
TWENTYEIGHT
By default XlsxWriter holds all cell data in memory. This is to allow future features when formatting
is applied separately from the data.
The effect of this is that XlsxWriter can consume a lot of memory and it is possible to run out of
memory when creating large files.
Fortunately, this memory usage can be reduced almost completely by using the Workbook()
’constant_memory’ property:
workbook = xlsxwriter.Workbook(filename, {'constant_memory': True})
The optimization works by flushing each row after a subsequent row is written. In this way the
largest amount of data held in memory for a worksheet is the amount of data required to hold a
single row of data.
Since each new row flushes the previous row, data must be written in sequential row order when
’constant_memory’ mode is on:
# Ok. With 'constant_memory' you must write data in row by column order.
for row in range(0, row_max):
for col in range(0, col_max):
worksheet.write(row, col, some_data)
# Not ok. With 'constant_memory' this will only write the first column of data.
for col in range(0, col_max):
for row in range(0, row_max):
worksheet.write(row, col, some_data)
Another optimization that is used to reduce memory usage is that cell strings aren’t stored in an
Excel structure call “shared strings” and instead are written “in-line”. This is a documented Excel
feature that is supported by most spreadsheet applications.
The trade-off when using ’constant_memory’ mode is that you won’t be able to take advantage
of any new features that manipulate cell data after it is written. Currently the add_table()
method doesn’t work in this mode and merge_range() and set_row() only work for the current
row.
355
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The performance figures below show execution time and memory usage for worksheets of size N
rows x 50 columns with a 50/50 mixture of strings and numbers. The figures are taken from an
arbitrary, mid-range, machine. Specific figures will vary from machine to machine but the trends
should be the same.
XlsxWriter in normal operation mode: the execution time and memory usage increase more of
less linearly with the number of rows:
Rows Columns Time (s) Memory (bytes)
200 50 0.43 2346728
400 50 0.84 4670904
800 50 1.68 8325928
1600 50 3.39 17855192
3200 50 6.82 32279672
6400 50 13.66 64862232
12800 50 27.60 128851880
XlsxWriter in constant_memory mode: the execution time still increases linearly with the number
of rows but the memory usage remains small and constant:
Rows Columns Time (s) Memory (bytes)
200 50 0.37 62208
400 50 0.74 62208
800 50 1.46 62208
1600 50 2.93 62208
3200 50 5.90 62208
6400 50 11.84 62208
12800 50 23.63 62208
In constant_memory mode the performance should be approximately the same as normal mode.
These figures were generated using programs in the dev/performance directory of the Xl-
sxWriter repo.
TWENTYNINE
This section explains how to add a VBA file containing functions or macros to an XlsxWriter file.
An Excel xlsm file is exactly the same as an xlsx file except that is contains an additional
vbaProject.bin file which contains functions and/or macros. Excel uses a different exten-
sion to differentiate between the two file formats since files containing macros are usually subject
357
Creating Excel files with Python and XlsxWriter, Release 1.2.9
The vbaProject.bin file is a binary OLE COM container. This was the format used in older
xls versions of Excel prior to Excel 2007. Unlike all of the other components of an xlsx/xlsm file
the data isn’t stored in XML format. Instead the functions and macros as stored as a pre-parsed
binary format. As such it wouldn’t be feasible to define macros and create a vbaProject.bin
file from scratch (at least not in the remaining lifespan and interest levels of the author).
Instead a workaround is used to extract vbaProject.bin files from existing xlsm files and then
add these to XlsxWriter files.
The vba_extract.py utility is used to extract the vbaProject.bin binary from an Excel 2007+
xlsm file. The utility is included in the XlsxWriter examples directory and is also installed as a
standalone executable file:
$ vba_extract.py macro_file.xlsm
Extracted: vbaProject.bin
Once the vbaProject.bin file has been extracted it can be added to the XlsxWriter workbook
using the add_vba_project() method:
workbook.add_vba_project('./vbaProject.bin')
If the VBA file contains functions you can then refer to them in calculations using
write_formula():
worksheet.write_formula('A1', '=MyMortgageCalc(200000, 25)')
Excel files that contain functions and macros should use an xlsm extension or else Excel will
complain and possibly not open the file:
workbook = xlsxwriter.Workbook('macros.xlsm')
It is also possible to assign a macro to a button that is inserted into a worksheet using the in-
sert_button() method:
import xlsxwriter
worksheet = workbook.add_worksheet()
worksheet.set_column('A:A', 30)
workbook.close()
It may be necessary to specify a more explicit macro name prefixed by the workbook VBA name
as follows:
worksheet.insert_button('B3', {'macro': 'ThisWorkbook.say_hello'})
See Example: Adding a VBA macro to a Workbook from the examples directory for a working
example.
Note: Button is the only VBA Control supported by Xlsxwriter. Due to the large effort in imple-
mentation (1+ man months) it is unlikely that any other form elements will be added in the future.
VBA macros generally refer to workbook and worksheet objects. If the VBA codenames aren’t
specified then XlsxWriter will use the Excel defaults of ThisWorkbook and Sheet1, Sheet2 etc.
If the macro uses other codenames you can set them using the workbook and worksheet
set_vba_name() methods as follows:
# Note: set codename for workbook and any worksheets.
workbook.set_vba_name('MyWorkbook')
worksheet1.set_vba_name('MySheet1')
worksheet2.set_vba_name('MySheet2')
You can find the names that are used in the VBA editor or by unzipping the xlsm file and grepping
the files. The following shows how to do that using libxml’s xmllint to format the XML for clarity:
$ unzip myfile.xlsm -d myfile
$ xmllint --format find myfile -name "*.xml" | xargs | grep "Pr.*codeName"
Note: This step is particularly important for macros created with non-English versions of Excel.
The XlsxWriter test suite contains several tests to ensure that this feature works and there is a
working example as shown above. However, there is no guarantee that it will work in all cases.
Some effort may be required and some knowledge of VBA will certainly help. If things don’t work
out here are some things to try:
1. Start with a simple macro file, ensure that it works and then add complexity.
2. Check the code names that macros use to refer to the workbook and worksheets (see the
previous section above). In general VBA uses a code name of ThisWorkbook to refer to
the current workbook and the sheet name (such as Sheet1) to refer to the worksheets.
These are the defaults used by XlsxWriter. If the macro uses other names, or the macro was
extracted from an non-English language version of Excel, then you can specify these using
the workbook and worksheet set_vba_name() methods:
# Note: set codename for workbook and any worksheets.
workbook.set_vba_name('MyWorkbook')
worksheet1.set_vba_name('MySheet1')
worksheet2.set_vba_name('MySheet2')
3. Try to extract the macros from an Excel 2007 file. The method should work with macros from
later versions (it was also tested with Excel 2010 macros). However there may be features
in the macro files of more recent version of Excel that aren’t backward compatible.
THIRTY
Python Pandas is a Python data analysis library. It can read, filter and re-arrange small and large
data sets and output them in a range of formats including Excel.
Pandas writes Excel files using the Xlwt module for xls files and the Openpyxl or XlsxWriter mod-
ules for xlsx files.
To use XlsxWriter with Pandas you specify it as the Excel writer engine:
import pandas as pd
# Close the Pandas Excel writer and output the Excel file.
writer.save()
361
Creating Excel files with Python and XlsxWriter, Release 1.2.9
In order to apply XlsxWriter features such as Charts, Conditional Formatting and Column Format-
ting to the Pandas output we need to access the underlying workbook and worksheet objects.
After that we can treat them as normal XlsxWriter objects.
Continuing on from the above example we do that as follows:
import pandas as pd
This is equivalent to the following code when using XlsxWriter on its own:
workbook = xlsxwriter.Workbook('filename.xlsx')
worksheet = workbook.add_worksheet()
The Workbook and Worksheet objects can then be used to access other XlsxWriter features, see
below.
Once we have the Workbook and Worksheet objects, as shown in the previous section, we we can
use them to apply other features such as adding a chart:
# Get the xlsxwriter objects from the dataframe writer object.
workbook = writer.book
worksheet = writer.sheets['Sheet1']
See the full example at Example: Pandas Excel output with a chart.
Note: The above example uses a fixed string =Sheet1!$B$2:$B$8 for the data range. It is also
possible to use a (row, col) range which can be varied based on the length of the dataframe.
See for example Example: Pandas Excel output with a line chart and Working with Cell Notation.
See the full example at Example: Pandas Excel output with conditional formatting.
XlsxWriter and Pandas provide very little support for formatting the output data from a dataframe
apart from default formatting such as the header and index cells and any cells that contain dates
or datetimes. In addition it isn’t possible to format any cells that already have a default format
applied.
If you require very controlled formatting of the dataframe output then you would probably be better
off using Xlsxwriter directly with raw data taken from Pandas. However, some formatting options
are available.
For example it is possible to set the default date and datetime formats via the Pandas interface:
writer = pd.ExcelWriter("pandas_datetime.xlsx",
engine='xlsxwriter',
datetime_format='mmm d yyyy hh:mm:ss',
date_format='mmmm dd yyyy')
See the full example at Example: Pandas Excel output with datetimes.
It is possible to format any other, non date/datetime column data using set_column():
# Add some cell formats.
format1 = workbook.add_format({'num_format': '#,##0.00'})
format2 = workbook.add_format({'num_format': '0%'})
Pandas writes the dataframe header with a default cell format. Since it is a cell format it cannot be
overridden using set_row(). If you wish to use your own format for the headings then the best
approach is to turn off the automatic header from Pandas and write your own. For example:
# Turn off the default header and skip one row to allow us to insert a
# user defined header.
df.to_excel(writer, sheet_name='Sheet1', startrow=1, header=False)
'text_wrap': True,
'valign': 'top',
'fg_color': '#D7E4BC',
'border': 1})
See the full example at Example: Pandas Excel output with user defined header format.
It is possible to write more than one dataframe to a worksheet or to several worksheets. For
example to write multiple dataframes to multiple worksheets:
# Write each dataframe to a different worksheet.
df1.to_excel(writer, sheet_name='Sheet1')
df2.to_excel(writer, sheet_name='Sheet2')
df3.to_excel(writer, sheet_name='Sheet3')
See the full example at Example: Pandas Excel with multiple dataframes.
It is also possible to write the Pandas XlsxWriter DataFrame output to a byte array:
import pandas as pd
import io
output = io.BytesIO()
writer.save()
xlsx_data = output.getvalue()
Here are some additional resources in relation to Pandas, Excel and XlsxWriter.
• The XlsxWriter Pandas examples later in the document: Pandas with XlsxWriter Examples.
• The Pandas documentation on the pandas.DataFrame.to_excel() method.
• A more detailed tutorial on Using Pandas and XlsxWriter to create Excel charts.
• The series of articles on the “Practical Business Python” website about Using Pandas and
Excel.
THIRTYONE
EXAMPLES
The following are some of the examples included in the examples directory of the XlsxWriter
distribution.
The simplest possible spreadsheet. This is a good place to start to see if the XlsxWriter module is
installed correctly.
371
Creating Excel files with Python and XlsxWriter, Release 1.2.9
##############################################################################
#
# A hello world spreadsheet using the XlsxWriter Python module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('hello_world.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
This program is an example of writing some of the features of the XlsxWriter module.
##############################################################################
#
# A simple example of some of the features of the XlsxWriter Python module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
# Insert an image.
worksheet.insert_image('B5', 'logo.png')
workbook.close()
Notes:
• This example includes the use of cell formatting via the The Format Class.
• Strings and numbers can be written with the same worksheet write() method.
• Data can be written to cells using Row-Column notation or ‘A1’ style notation, see Working
with Cell Notation.
A simple program demonstrating a check for exceptions when closing the file.
We try to close() the file in a loop so that if there is an exception, such as if the file is open or
locked, we can ask the user to close the file, after which we can try again to overwrite it.
##############################################################################
#
# A simple program demonstrating a check for exceptions when closing the file.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('check_close.xlsx')
worksheet = workbook.add_worksheet()
break
This program is an example of writing some of the features of the XlsxWriter module. See the
Working with Dates and Time section for more details on this example.
##############################################################################
#
# A simple program to write some dates and times to an Excel file
# using the XlsxWriter Python module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
from datetime import datetime
import xlsxwriter
# Examples date and time formats. In the output file compare how changing
# the format codes change the appearance of the date.
date_formats = (
'dd/mm/yy',
'mm/dd/yy',
'dd m yy',
'd mm yy',
'd mmm yy',
'd mmmm yy',
'd mmmm yyy',
'd mmmm yyyy',
'dd/mm/yy hh:mm',
'dd/mm/yy hh:mm:ss',
'dd/mm/yy hh:mm:ss.000',
'hh:mm',
'hh:mm:ss',
'hh:mm:ss.000',
)
# Write the same date and time using each of the above formats.
for date_format_str in date_formats:
row += 1
workbook.close()
This program is an example of writing hyperlinks to a worksheet. See the write_url() method
for more details.
###############################################################################
#
# Example of how to use the XlsxWriter module to write hyperlinks
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook.close()
This program is an example of writing array formulas with one or more return values. See the
write_array_formula() method for more details.
#######################################################################
#
# Example of how to use Python and the XlsxWriter module to write
# simple array formulas.
#
workbook.close()
This program is an example of using autofilters in a worksheet. See Working with Autofilters for
more details.
###############################################################################
#
# An example of how to create autofilters with XlsxWriter.
#
# An autofilter is a way of adding drop down lists to the headers of a 2D
# range of worksheet data. This allows users to filter the data based on
# simple criteria so that some data is shown and some is hidden.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('autofilter.xlsx')
# Read the headers from the first line of the input file.
headers = textfile.readline().strip("\n").split()
data.append(row_data)
###############################################################################
#
# Example 1. Autofilter without conditions.
#
row = 1
for row_data in (data):
worksheet1.write_row(row, 0, row_data)
###############################################################################
#
#
# Example 2. Autofilter with a filter condition in the first column.
worksheet2.write_row(row, 0, row_data)
###############################################################################
#
#
# Example 3. Autofilter with a dual filter condition in one of the columns.
#
worksheet3.write_row(row, 0, row_data)
###############################################################################
#
#
# Example 4. Autofilter with filter conditions in two columns.
#
worksheet4.write_row(row, 0, row_data)
###############################################################################
#
#
# Example 5. Autofilter with filter for blanks.
#
# Create a blank cell in our test data.
data[5][0] = ''
worksheet5.write_row(row, 0, row_data)
###############################################################################
#
#
# Example 6. Autofilter with filter for non-blanks.
#
worksheet6.write_row(row, 0, row_data)
workbook.close()
Example of how to add data validation and drop down lists to an XlsxWriter file. Data validation is
a way of limiting user input to certain ranges or to allow a selection from a drop down list.
###############################################################################
#
# Example of how to add data validation and dropdown lists to an
# XlsxWriter file.
#
# Data validation is a feature of Excel which allows you to restrict
# the data that a user enters in a cell and to display help and
# warning messages. It also allows you to restrict input to values in
# a drop down list.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
from datetime import date, time
import xlsxwriter
workbook = xlsxwriter.Workbook('data_validate.xlsx')
worksheet = workbook.add_worksheet()
header_format = workbook.add_format({
'border': 1,
'bg_color': '#C6EFCE',
'bold': True,
'text_wrap': True,
'valign': 'vcenter',
'indent': 1,
})
# Write the header cells and some data that will be used in the examples.
heading1 = 'Some examples of data validation in XlsxWriter'
heading2 = 'Enter values in this column'
heading3 = 'Sample Data'
worksheet.write('A3', txt)
worksheet.data_validation('B3', {'validate': 'integer',
'criteria': 'between',
'minimum': 1,
'maximum': 10})
worksheet.write('A5', txt)
worksheet.data_validation('B5', {'validate': 'integer',
'criteria': 'not between',
'minimum': '=E3',
'maximum': '=F3'})
#
txt = 'Enter an integer greater than 0'
worksheet.write('A7', txt)
worksheet.data_validation('B7', {'validate': 'integer',
'criteria': '>',
'value': 0})
worksheet.write('A9', txt)
worksheet.data_validation('B9', {'validate': 'integer',
'criteria': '<',
'value': 10})
worksheet.write('A11', txt)
worksheet.data_validation('B11', {'validate': 'decimal',
'criteria': 'between',
'minimum': 0.1,
'maximum': 0.5})
worksheet.write('A13', txt)
worksheet.data_validation('B13', {'validate': 'list',
'source': ['open', 'high', 'close']})
worksheet.write('A15', txt)
worksheet.data_validation('B15', {'validate': 'list',
'source': '=$E$4:$G$4'})
worksheet.write('A17', txt)
worksheet.write('A19', txt)
worksheet.data_validation('B19', {'validate': 'time',
'criteria': 'between',
'minimum': time(6, 0),
'maximum': time(12, 0)})
worksheet.write('A21', txt)
worksheet.data_validation('B21', {'validate': 'length',
'criteria': '>',
'value': 3})
worksheet.write('A23', txt)
worksheet.data_validation('B23', {'validate': 'custom',
'value': '=AND(F5=50,G5=60)'})
worksheet.write('A25', txt)
worksheet.data_validation('B25', {'validate': 'integer',
'criteria': 'between',
'minimum': 1,
'maximum': 100,
'input_title': 'Enter an integer:',
'input_message': 'between 1 and 100'})
worksheet.write('A27', txt)
worksheet.data_validation('B27', {'validate': 'integer',
'criteria': 'between',
'minimum': 1,
'maximum': 100,
'input_title': 'Enter an integer:',
'input_message': 'between 1 and 100',
'error_title': 'Input value is not valid!',
'error_message':
'It should be an integer between 1 and 100'})
worksheet.write('A29', txt)
worksheet.data_validation('B29', {'validate': 'integer',
'criteria': 'between',
'minimum': 1,
'maximum': 100,
'input_title': 'Enter an integer:',
'input_message': 'between 1 and 100',
'error_title': 'Input value is not valid!',
'error_message':
'It should be an integer between 1 and 100',
'error_type': 'information'})
workbook.close()
Example of how to add conditional formatting to an XlsxWriter file. Conditional formatting allows
you to apply a format to a cell or a range of cells based on certain criteria.
###############################################################################
#
# Example of how to add conditional formatting to an XlsxWriter file.
#
# Conditional formatting allows you to apply a format to a cell or a
# range of cells based on certain criteria.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('conditional_format.xlsx')
worksheet1 = workbook.add_worksheet()
worksheet2 = workbook.add_worksheet()
worksheet3 = workbook.add_worksheet()
worksheet4 = workbook.add_worksheet()
worksheet5 = workbook.add_worksheet()
worksheet6 = workbook.add_worksheet()
worksheet7 = workbook.add_worksheet()
worksheet8 = workbook.add_worksheet()
worksheet9 = workbook.add_worksheet()
'font_color': '#9C0006'})
###############################################################################
#
# Example 1.
#
caption = ('Cells with values >= 50 are in light red. '
'Values < 50 are in light green.')
###############################################################################
#
# Example 2.
#
caption = ('Values between 30 and 70 are in light red. '
'Values outside that range are in light green.')
worksheet2.write('A1', caption)
###############################################################################
#
# Example 3.
#
caption = ('Duplicate values are in light red. '
'Unique values are in light green.')
worksheet3.write('A1', caption)
###############################################################################
#
# Example 4.
#
caption = ('Above average values are in light red. '
'Below average values are in light green.')
worksheet4.write('A1', caption)
###############################################################################
#
# Example 5.
#
caption = ('Top 10 values are in light red. '
'Bottom 10 values are in light green.')
worksheet5.write('A1', caption)
###############################################################################
#
# Example 6.
#
caption = ('Cells with values >= 50 are in light red. '
'Values < 50 are in light green. Non-contiguous ranges.')
###############################################################################
#
# Example 7.
#
caption = 'Examples of color scales with default and user colors.'
worksheet7.write('A1', caption)
###############################################################################
#
# Example 8.
#
caption = 'Examples of data bars.'
worksheet8.write('A1', caption)
###############################################################################
#
# Example 9.
#
caption = 'Examples of conditional formats with icon sets.'
data = [
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
[1, 2, 3, 4],
[1, 2, 3, 4, 5],
[1, 2, 3, 4, 5],
]
worksheet9.write('A1', caption)
worksheet9.write_row(row + 2, 1, row_data)
workbook.close()
##############################################################################
#
# Example of how to create defined names with the XlsxWriter Python module.
#
# This method is used to define a user friendly name to represent a value,
# a single cell or a range of cells in a workbook.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('defined_name.xlsx')
worksheet1 = workbook.add_worksheet()
worksheet2 = workbook.add_worksheet()
# Write some text in the file and one of the defined names in a formula.
for worksheet in workbook.worksheets():
worksheet.set_column('A:A', 45)
worksheet.write('A1', 'This worksheet contains some defined names.')
worksheet.write('A2', 'See Formulas -> Name Manager above.')
worksheet.write('A3', 'Example formula in cell B3 ->')
worksheet.write('B3', '=Exchange_rate')
workbook.close()
This program is an example of merging cells in a worksheet. See the merge_range() method
for more details.
##############################################################################
#
# A simple example of merging cells with the XlsxWriter Python module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
# Increase the cell size of the merged cells to highlight the formatting.
worksheet.set_column('B:D', 12)
worksheet.set_row(3, 30)
worksheet.set_row(6, 30)
worksheet.set_row(7, 30)
# Merge 3 cells.
worksheet.merge_range('B4:D4', 'Merged Range', merge_format)
workbook.close()
This program is an example of writing rich stings with multiple format to a cell in a worksheet. See
the write_rich_string() method for more details.
#######################################################################
#
# An example of using Python and XlsxWriter to write some "rich strings",
# i.e., strings with multiple formats.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('rich_strings.xlsx')
worksheet = workbook.add_worksheet()
worksheet.set_column('A:A', 30)
bold, 'bold',
' and this is ',
italic, 'italic')
worksheet.write_rich_string('A3',
'This is ',
red, 'red',
' and this is ',
blue, 'blue')
worksheet.write_rich_string('A5',
'Some ',
bold, 'bold text',
' centered',
center)
worksheet.write_rich_string('A7',
italic,
'j = k',
superscript, '(n-1)',
center)
# If you have formats and segments in a list you can add them like this:
segments = ['This is ', bold, 'bold', ' and this is ', blue, 'blue']
worksheet.write_rich_string('A9', *segments)
workbook.close()
##############################################################################
#
# An example of merging cells which contain a rich string using the
# XlsxWriter Python module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
# We can only write simple types to merged ranges so we write a blank string.
worksheet.merge_range('B2:E5', "", cell_format)
# We then overwrite the first merged cell with a rich string. Note that we
# must also pass the cell format used in the merged cells format at the end.
worksheet.write_rich_string('B2',
'This is ',
red, 'red',
' and this is ',
blue, 'blue',
cell_format)
workbook.close()
This program is an example of inserting images into a worksheet. See the insert_image()
method for more details.
##############################################################################
#
# An example of inserting images into a worksheet using the XlsxWriter
# Python module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
# Insert an image.
worksheet.write('A2', 'Insert an image in a cell:')
worksheet.insert_image('B2', 'python.png')
workbook.close()
This program is an example of inserting images from a Python io.BytesIO byte stream into a
worksheet.
The example byte streams are populated from a URL and from a local file.
See the insert_image() method for more details.
31.15. Example: Inserting images from a URL or byte stream into a worksheet 405
Creating Excel files with Python and XlsxWriter, Release 1.2.9
##############################################################################
#
# An example of inserting images from a Python BytesIO byte stream into a
# worksheet using the XlsxWriter module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
image_data = BytesIO(urlopen(url).read())
# Write the byte stream image to a cell. Note, the filename must be
# specified. In this case it will be read from url string.
worksheet.insert_image('B2', url, {'image_data': image_data})
# Read a local image file into a a byte stream. Note, the insert_image()
# method can do this directly. This is for illustration purposes only.
filename = 'python.png'
# Write the byte stream image to a cell. The filename must be specified.
worksheet.insert_image('B8', filename, {'image_data': image_data})
workbook.close()
Example of how to use Python and the XlsxWriter module to change the default worksheet and
cell text direction from left-to-right to right-to-left as required by some middle eastern versions of
Excel.
Note, this a Python2 unicode version. Remove the u’’ to make this work with Python3. See also
the unicode_python3.py .
A simple Django View class to write an Excel file using the XlsxWriter module.
##############################################################################
#
# A simple Django view class to write an Excel file using the XlsxWriter
# module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import io
from django.http import HttpResponse
from django.views.generic import View
import xlsxwriter
def get_simple_table_data():
# Simulate a more complex table read.
return [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
class MyView(View):
# Even though the final file will be in memory the module uses temp
# files during assembly for efficiency. To avoid this on servers that
# don't allow temp files, for example the Google APP Engine, set the
# 'in_memory' Workbook() constructor option as shown in the docs.
workbook = xlsxwriter.Workbook(output)
worksheet = workbook.add_worksheet()
return response
Example of using Python and XlsxWriter to create an Excel XLSX file in an in memory string
suitable for serving via SimpleHTTPServer or Django or with the Google App Engine.
Even though the final file will be in memory, via the BytesIO object, the module uses temp files
during assembly for efficiency. To avoid this on servers that don’t allow temp files, for example the
Google APP Engine, set the in_memory constructor option to True.
For a Python 3 example see Example: Simple HTTP Server (Python 3).
##############################################################################
#
# Example of using Python and XlsxWriter to create an Excel XLSX file in an in
# memory string suitable for serving via SimpleHTTPServer or Django or with
# the Google App Engine.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import SimpleHTTPServer
import SocketServer
import io
import xlsxwriter
class Handler(SimpleHTTPServer.SimpleHTTPRequestHandler):
def do_GET(self):
# Create an in-memory output file for the new workbook.
output = io.BytesIO()
# Even though the final file will be in memory the module uses temp
# files during assembly for efficiency. To avoid this on servers that
# don't allow temp files, for example the Google APP Engine, set the
# 'in_memory' constructor option to True:
workbook = xlsxwriter.Workbook(output, {'in_memory': True})
worksheet = workbook.add_worksheet()
Example of using Python and XlsxWriter to create an Excel XLSX file in an in memory string
suitable for serving via SimpleHTTPRequestHandler or Django or with the Google App Engine.
Even though the final file will be in memory, via the BytesIO object, the XlsxWriter module uses
temp files during assembly for efficiency. To avoid this on servers that don’t allow temp files set
the in_memory constructor option to True.
The Python 3 Runtime Environment in Google App Engine now supports a filesystem with
read/write access to /tmp which means that the in_memory option isn’t required. The /tmp
dir isn’t supported in the Python 2 Runtime Environment so that option is still required there.
For a Python 2 example see Example: Simple HTTP Server (Python 2).
##############################################################################
#
# Example of using Python and XlsxWriter to create an Excel XLSX file in an in
# memory string suitable for serving via SimpleHTTPRequestHandler or Django or
# with the Google App Engine.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import http.server
import socketserver
import io
import xlsxwriter
class Handler(http.server.SimpleHTTPRequestHandler):
def do_GET(self):
# Create an in-memory output file for the new workbook.
output = io.BytesIO()
# Even though the final file will be in memory the module uses temp
# files during assembly for efficiency. To avoid this on servers that
# don't allow temp files set the 'in_memory' constructor option to True.
#
# The Python 3 Runtime Environment in Google App Engine now supports a
# filesystem with read/write access to /tmp which means that the
# 'in_memory' option isn't required. The /tmp dir isn't supported in
# the Python 2 Runtime Environment so that option is still required
# there. See:
#
# https://cloud.google.com/appengine/docs/standard/python3/runtime#filesystem
#
workbook = xlsxwriter.Workbook(output, {'in_memory': True})
worksheet = workbook.add_worksheet()
This program is an example of adding headers and footers to worksheets. See the
set_header() and set_footer() methods for more details.
######################################################################
#
# This program shows several examples of how to set up headers and
# footers with XlsxWriter.
#
# The control characters used in the header/footer strings are:
#
# Control Category Description
# ======= ======== ===========
# &L Justification Left
# &C Center
# &R Right
#
# &P Information Page number
# &N Total number of pages
# &D Date
# &T Time
# &F File name
# &A Worksheet name
#
# &fontsize Font Font size
# &"font,style" Font name and style
# &U Single underline
# &E Double underline
# &S Strikethrough
# &X Superscript
# &Y Subscript
#
# &[Picture] Images Image placeholder
# &G Same as &[Picture]
#
# && Miscellaneous Literal ampersand &
#
# See the main XlsxWriter documentation for more information.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('headers_footers.xlsx')
preview = 'Select Print Preview to see the header and footer'
######################################################################
#
# A simple example to start
#
worksheet1 = workbook.add_worksheet('Simple')
header1 = '&CHere is some centered text.'
footer1 = '&LHere is some left aligned text.'
worksheet1.set_header(header1)
worksheet1.set_footer(footer1)
worksheet1.set_column('A:A', 50)
worksheet1.write('A1', preview)
######################################################################
#
# Insert a header image.
#
worksheet2 = workbook.add_worksheet('Image')
header2 = '&L&G'
# Adjust the page top margin to allow space for the header image.
worksheet2.set_margins(top=1.3)
worksheet2.set_column('A:A', 50)
worksheet2.write('A1', preview)
######################################################################
#
# This is an example of some of the header/footer variables.
#
worksheet3 = workbook.add_worksheet('Variables')
header3 = '&LPage &P of &N' + '&CFilename: &F' + '&RSheetname: &A'
footer3 = '&LCurrent date: &D' + '&RCurrent time: &T'
worksheet3.set_header(header3)
worksheet3.set_footer(footer3)
worksheet3.set_column('A:A', 50)
worksheet3.write('A1', preview)
worksheet3.write('A21', 'Next sheet')
worksheet3.set_h_pagebreaks([20])
######################################################################
#
# This example shows how to use more than one font
#
worksheet4 = workbook.add_worksheet('Mixed fonts')
header4 = '&C&"Courier New,Bold"Hello &"Arial,Italic"World'
footer4 = '&C&"Symbol"e&"Arial" = mc&X2'
worksheet4.set_header(header4)
worksheet4.set_footer(footer4)
worksheet4.set_column('A:A', 50)
worksheet4.write('A1', preview)
######################################################################
#
# Example of line wrapping
#
worksheet5 = workbook.add_worksheet('Word wrap')
header5 = "&CHeading 1\nHeading 2"
worksheet5.set_header(header5)
worksheet5.set_column('A:A', 50)
worksheet5.write('A1', preview)
######################################################################
#
# Example of inserting a literal ampersand &
#
worksheet6 = workbook.add_worksheet('Ampersand')
header6 = '&CCuriouser && Curiouser - Attorneys at Law'
worksheet6.set_header(header6)
worksheet6.set_column('A:A', 50)
worksheet6.write('A1', preview)
workbook.close()
An example of how to create panes in a worksheet, both “freeze” panes and “split” panes. See the
freeze_panes() and split_panes() methods for more details.
#######################################################################
#
# Example of using Python and the XlsxWriter module to create
# worksheet panes.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('panes.xlsx')
#######################################################################
#
# Set up some formatting and text to highlight the panes.
#
header_format = workbook.add_format({'bold': True,
'align': 'center',
'valign': 'vcenter',
'fg_color': '#D7E4BC',
'border': 1})
#######################################################################
#
# Example 1. Freeze pane on the top row.
#
worksheet1.freeze_panes(1, 0)
#######################################################################
#
# Example 2. Freeze pane on the left column.
#
worksheet2.freeze_panes(0, 1)
#######################################################################
#
# Example 3. Freeze pane on the top row and left column.
#
worksheet3.freeze_panes(1, 1)
#######################################################################
#
# Example 4. Split pane on the top row and left column.
#
# The divisions must be specified in terms of row and column dimensions.
# The default row height is 15 and the default column width is 8.43
#
worksheet4.split_panes(15, 8.43)
workbook.close()
###############################################################################
#
# Example of how to add tables to an XlsxWriter worksheet.
#
# Tables in Excel are used to group rows and columns of data into a single
# structure that can be referenced in a formula or formatted collectively.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('tables.xlsx')
worksheet1 = workbook.add_worksheet()
worksheet2 = workbook.add_worksheet()
worksheet3 = workbook.add_worksheet()
worksheet4 = workbook.add_worksheet()
worksheet5 = workbook.add_worksheet()
worksheet6 = workbook.add_worksheet()
worksheet7 = workbook.add_worksheet()
worksheet8 = workbook.add_worksheet()
worksheet9 = workbook.add_worksheet()
worksheet10 = workbook.add_worksheet()
worksheet11 = workbook.add_worksheet()
worksheet12 = workbook.add_worksheet()
worksheet13 = workbook.add_worksheet()
###############################################################################
#
# Example 1.
#
caption = 'Default table with no data.'
###############################################################################
#
# Example 2.
#
caption = 'Default table with data.'
###############################################################################
#
# Example 3.
#
caption = 'Table without default autofilter.'
worksheet3.set_column('B:G', 12)
###############################################################################
#
# Example 4.
#
caption = 'Table without default header row.'
###############################################################################
#
# Example 5.
#
caption = 'Default table with "First Column" and "Last Column" options.'
worksheet5.write_row('B4', data[0])
worksheet5.write_row('B5', data[1])
worksheet5.write_row('B6', data[2])
worksheet5.write_row('B7', data[3])
###############################################################################
#
# Example 6.
#
caption = 'Table with banded columns but without default banded rows.'
###############################################################################
#
# Example 7.
#
caption = 'Table with user defined column headers'
###############################################################################
#
# Example 8.
#
caption = 'Table with user defined column headers'
###############################################################################
#
# Example 9.
#
caption = 'Table with totals row (but no caption or totals).'
###############################################################################
#
# Example 10.
#
caption = 'Table with totals row with user captions and functions.'
###############################################################################
#
# Example 11.
#
caption = 'Table with alternative Excel style.'
'total_function': 'sum'
},
]}
###############################################################################
#
# Example 12.
#
caption = 'Table with Excel style removed.'
###############################################################################
#
# Example 13.
#
caption = 'Table with column formats.'
workbook.close()
An example of adding support for user defined types to the XlsxWriter write() method using the
add_write_handler() method.
This example takes UUID data and writes it as a string by adding a callback handler to the
write() method. A UUID data type would normally raise a TypeError in XlsxWriter since it
isn’t a type that is supported by Excel.
See the Writing user defined types section for more details on how this functionality works.
##############################################################################
#
# An example of adding support for user defined types to the XlsxWriter write()
# method.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
import uuid
worksheet.set_column('A:A', 40)
# Create a UUID.
my_uuid = uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
# Write the UUID. This would raise a TypeError without the handler.
worksheet.write('A1', my_uuid)
workbook.close()
An example of adding support for user defined types to the XlsxWriter write() method using the
add_write_handler() method.
This example removes NaN (Not a Number) values from numeric data and writes a blank cell
instead. Note, another way to handle this is with the nan_inf_to_errors option in the Work-
book() constructor.
See the Writing user defined types section for more details on how this functionality works.
##############################################################################
#
# An example of adding support for user defined types to the XlsxWriter write()
# method.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
import math
worksheet = workbook.add_worksheet()
# Write the data. Note that write_row() calls write() so this will work as
# expected. Writing NaN values would raise a TypeError without the handler.
worksheet.write_row('A1', my_data)
workbook.close()
An example of adding support for user defined types to the XlsxWriter write() method using the
add_write_handler() method.
This, somewhat artificial, example shows how to use the row and col parameters to control the
logic of the callback function. It changes the worksheet write() method so that it hides/replaces
user passwords when writing string values based on their position in the worksheet.
See the Writing user defined types section for more details on how this functionality works.
##############################################################################
#
# An example of adding support for user defined types to the XlsxWriter write()
# method.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
import math
# Write the data. Note that write_row() calls write() so this will work as
# expected.
for row_num, row_data in enumerate(my_data):
worksheet.write_row(row_num, 0, row_data)
workbook.close()
###############################################################################
#
# Example of how to add sparklines to a Python XlsxWriter file.
#
# Sparklines are small charts that fit in a single cell and are
# used to show trends in data.
#
# See sparklines2.py for examples of more complex sparkline formatting.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('sparklines1.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
This example shows the majority of options that can be applied to sparklines.
Sparklines are small charts that fit in a single cell and are used to show trends in data.
See the Working with Sparklines method for more details.
###############################################################################
#
# Example of how to add sparklines to an XlsxWriter file with Python.
#
# Sparklines are small charts that fit in a single cell and are
# used to show trends in data. This example shows the majority of
# options that can be applied to sparklines.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('sparklines2.xlsx')
worksheet1 = workbook.add_worksheet()
worksheet2 = workbook.add_worksheet()
bold = workbook.add_format({'bold': True})
row = 1
# Headings.
worksheet1.write('A1', 'Sparkline', bold)
worksheet1.write('B1', 'Description', bold)
###############################################################################
#
text = 'A default "line" sparkline.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'A default "column" sparkline.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'A default "win/loss" sparkline.'
worksheet1.write(row, 1, text)
row += 2
###############################################################################
#
text = 'Line with markers.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Line with high and low points.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Line with first and last point markers.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Line with negative point markers.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Line with axis.'
worksheet1.write(row, 1, text)
row += 2
###############################################################################
#
text = 'Column with default style (1).'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Column with style 2.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Column with style 3.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Column with style 4.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Column with style 5.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Column with style 6.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Column with a user defined color.'
worksheet1.write(row, 1, text)
row += 2
###############################################################################
#
text = 'A win/loss sparkline.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
worksheet1.write(row, 1, text)
row += 2
###############################################################################
#
text = 'A left to right column (the default).'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'A right to left column.'
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
text = 'Sparkline and text in one cell.'
worksheet1.write(row, 0, 'Growth')
worksheet1.write(row, 1, text)
row += 2
###############################################################################
#
text = 'A grouped sparkline. Changes are applied to all three.'
'range': ['Sheet2!A5:J5',
'Sheet2!A6:J6',
'Sheet2!A7:J7'],
'markers': True})
worksheet1.write(row, 1, text)
row += 1
###############################################################################
#
# Create a second worksheet with data to plot.
#
worksheet2.set_column('A:J', 11)
data = [
# Unbalanced histogram.
[5, 6, 7, 10, 15, 20, 30, 50, 70, 100],
workbook.close()
A simple example of adding cell comments to a worksheet. For more details see Working with Cell
Comments.
###############################################################################
#
# An example of writing cell comments to a worksheet using Python and
# XlsxWriter.
#
# For more advanced comment options see comments2.py.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('comments1.xlsx')
worksheet = workbook.add_worksheet()
worksheet.write('A1', 'Hello')
worksheet.write_comment('A1', 'This is a comment')
workbook.close()
Another example of adding cell comments to a worksheet. This example demonstrates most of
the available comment formatting options. For more details see Working with Cell Comments.
###############################################################################
#
# An example of writing cell comments to a worksheet using Python and
# XlsxWriter.
#
# Each of the worksheets demonstrates different features of cell comments.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('comments.xlsx')
worksheet1 = workbook.add_worksheet()
worksheet2 = workbook.add_worksheet()
worksheet3 = workbook.add_worksheet()
worksheet4 = workbook.add_worksheet()
worksheet5 = workbook.add_worksheet()
worksheet6 = workbook.add_worksheet()
worksheet7 = workbook.add_worksheet()
worksheet8 = workbook.add_worksheet()
###############################################################################
#
# Example 1. Demonstrates a simple cell comments without formatting.
#
###############################################################################
#
# Example 2. Demonstrates visible and hidden comments.
#
###############################################################################
#
# Example 3. Demonstrates visible and hidden comments set at the worksheet
# level.
#
worksheet3.set_column('C:C', 25)
worksheet3.set_row(2, 50)
worksheet3.set_row(5, 50)
worksheet3.set_row(8, 50)
###############################################################################
#
# Example 4. Demonstrates changes to the comment box dimensions.
#
worksheet4.show_comments()
cell_text = 'This cell comment has width and height specified in pixels.'
###############################################################################
#
# Example 5. Demonstrates changes to the cell comment position.
#
worksheet5.set_column('C:C', 25)
worksheet5.set_row(2, 50)
worksheet5.set_row(5, 50)
worksheet5.set_row(8, 50)
worksheet5.set_row(11, 50)
worksheet5.show_comments()
cell_text = 'This cell comment has been shifted within its default cell.'
###############################################################################
#
# Example 6. Demonstrates changes to the comment background color.
#
worksheet6.set_column('C:C', 25)
worksheet6.set_row(2, 50)
worksheet6.set_row(5, 50)
worksheet6.set_row(8, 50)
worksheet6.show_comments()
###############################################################################
#
# Example 7. Demonstrates how to set the cell comment author.
#
worksheet7.set_column('C:C', 30)
worksheet7.set_row(2, 50)
worksheet7.set_row(5, 50)
author = ''
cell = 'C3'
cell_text = ("Move the mouse over this cell and you will see 'Cell commented "
"by (blank)' in the status bar at the bottom")
comment = 'Hello.'
author = 'Python'
cell = 'C6'
cell_text = ("Move the mouse over this cell and you will see 'Cell commented "
"by Python' in the status bar at the bottom")
###############################################################################
#
worksheet8.show_comments()
cell_text = ('The height of this row has been adjusted explicitly using '
'set_row(). The size of the comment box is adjusted '
'accordingly by XlsxWriter.')
comment = 'Hello.'
cell_text = ('The height of this row has been adjusted by Excel due to the '
'text wrap property being set. Unfortunately this means that '
'the height of the row is unknown to XlsxWriter at run time '
"and thus the comment box is stretched as well.\n\n"
'Use set_row() to specify the row height explicitly to avoid '
'this problem.')
workbook.close()
The following is an example of how to insert and format textboxes in a worksheet, see in-
sert_textbox() and Working with Textboxes for more details.
#######################################################################
#
# An example of inserting textboxes into an Excel worksheet using
# Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('textbox.xlsx')
worksheet = workbook.add_worksheet()
row = 4
col = 1
# The examples below show different textbox options and formatting. In each
# example the text describes the formatting.
# Example
text = 'A simple textbox with some text'
worksheet.insert_textbox(row, col, text)
row += 10
# Example
text = 'A textbox with changed dimensions'
options = {
'width': 256,
'height': 100,
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'A textbox with an offset in the cell'
options = {
'x_offset': 10,
'y_offset': 10,
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'A textbox with scaling'
options = {
'x_scale': 1.5,
'y_scale': 0.8,
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'A textbox with some long text that wraps around onto several lines'
worksheet.insert_textbox(row, col, text)
row += 10
# Example
text = 'A textbox\nwith some\nnewlines\n\nand paragraphs'
worksheet.insert_textbox(row, col, text)
row += 10
# Example
text = 'A textbox with a solid fill background'
options = {
'fill': {'color': 'red'},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'A textbox with a no fill background'
options = {
'fill': {'none': True},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'A textbox with a gradient fill background'
options = {
'gradient': {'colors': ['#DDEBCF',
'#9CB86E',
'#156B13']},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'A textbox with a user defined border line'
options = {
'border': {'color': 'red',
'width': 3,
'dash_type': 'round_dot'},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'A textbox with no border line'
options = {
'border': {'none': True},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Default alignment: top - left'
worksheet.insert_textbox(row, col, text)
row += 10
# Example
text = 'Alignment: top - center'
options = {
'align': {'horizontal': 'center'},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Alignment: middle - center'
options = {
'align': {'vertical': 'middle',
'horizontal': 'center'},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Font properties: bold'
options = {
# Example
text = 'Font properties: various'
options = {
'font': {'bold': True},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Font properties: various'
options = {
'font': {'bold': True,
'italic': True,
'underline': True,
'name': 'Arial',
'color': 'red',
'size': 12}
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Some text in a textbox with formatting'
options = {
'font': {'color': 'white'},
'align': {'vertical': 'middle',
'horizontal': 'center'
},
'gradient': {'colors': ['red', 'blue']},
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = ''
options = {
'textlink': '=$F$185',
}
worksheet.write('F185', 'Text in a cell')
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Text rotated up'
options = {
'text_rotation': 90
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Text rotated down'
options = {
'text_rotation': -90
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Text rotated vertically'
options = {
'text_rotation': 270
}
worksheet.insert_textbox(row, col, text, options)
row += 10
# Example
text = 'Textbox with hyperlink'
options = {
'url': 'https://github.com/jmcnamara',
'tip': 'GitHub'
}
worksheet.insert_textbox(row, col, text, options)
row += 10
workbook.close()
Examples of how use XlsxWriter to generate Excel outlines and grouping. See also Working with
Outlines and Grouping.
###############################################################################
#
# Example of how use Python and XlsxWriter to generate Excel outlines and
# grouping.
#
# Excel allows you to group rows or columns so that they can be hidden or
# displayed with a single mouse click. This feature is referred to as outlines.
#
# Outlines can reduce complex data down to a few salient sub-totals or
# summaries.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
###############################################################################
#
# Example 1: A worksheet with outlined rows. It also includes SUBTOTAL()
# functions so that it looks like the type of automatic outlines that are
# generated when you use the Excel Data->SubTotals menu item.
#
# For outlines the important parameters are 'level' and 'hidden'. Rows with
# the same 'level' are grouped together. The group will be collapsed if
# 'hidden' is enabled. The parameters 'height' and 'cell_format' are assigned
# default values if they are None.
#
worksheet1.set_row(1, None, None, {'level': 2})
worksheet1.set_row(2, None, None, {'level': 2})
worksheet1.set_row(3, None, None, {'level': 2})
worksheet1.set_row(4, None, None, {'level': 2})
worksheet1.set_row(5, None, None, {'level': 1})
worksheet1.write('A7', 'South')
worksheet1.write('A8', 'South')
worksheet1.write('A9', 'South')
worksheet1.write('A10', 'South')
worksheet1.write('A11', 'South Total', bold)
worksheet1.write('B7', 400)
worksheet1.write('B8', 600)
worksheet1.write('B9', 500)
worksheet1.write('B10', 600)
worksheet1.write('B11', '=SUBTOTAL(9,B7:B10)', bold)
###############################################################################
#
# Example 2: A worksheet with outlined rows. This is the same as the
# previous example except that the rows are collapsed.
# Note: We need to indicate the rows that contains the collapsed symbol '+'
# with the optional parameter, 'collapsed'. The group will be then be
# collapsed if 'hidden' is True.
#
worksheet2.set_row(1, None, None, {'level': 2, 'hidden': True})
worksheet2.set_row(2, None, None, {'level': 2, 'hidden': True})
worksheet2.set_row(3, None, None, {'level': 2, 'hidden': True})
worksheet2.set_row(4, None, None, {'level': 2, 'hidden': True})
worksheet2.set_row(5, None, None, {'level': 1, 'hidden': True})
worksheet2.write('A7', 'South')
worksheet2.write('A8', 'South')
worksheet2.write('A9', 'South')
worksheet2.write('A10', 'South')
worksheet2.write('A11', 'South Total', bold)
worksheet2.write('B7', 400)
worksheet2.write('B8', 600)
worksheet2.write('B9', 500)
worksheet2.write('B10', 600)
###############################################################################
#
# Example 3: Create a worksheet with outlined columns.
#
data = [
['Month', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Total'],
['North', 50, 20, 15, 25, 65, 80, '=SUM(B2:G2)'],
['South', 10, 20, 30, 50, 50, 50, '=SUM(B3:G3)'],
['East', 45, 75, 50, 15, 75, 100, '=SUM(B4:G4)'],
['West', 15, 15, 55, 35, 20, 50, '=SUM(B5:G5)']]
###############################################################################
#
# Example 4: Show all possible outline levels.
#
levels = [
'Level 1', 'Level 2', 'Level 3', 'Level 4', 'Level 5', 'Level 6',
'Level 7', 'Level 6', 'Level 5', 'Level 4', 'Level 3', 'Level 2',
'Level 1']
worksheet4.write_column('A1', levels)
workbook.close()
Examples of how use XlsxWriter to generate Excel outlines and grouping. These examples focus
mainly on collapsed outlines. See also Working with Outlines and Grouping.
###############################################################################
#
# Example of how to use Python and XlsxWriter to generate Excel outlines and
# grouping.
#
# These examples focus mainly on collapsed outlines. See also the
# outlines.py example program for more general examples.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
# This function will generate the same data and sub-totals on each worksheet.
# Used in the first 4 examples.
#
def create_sub_totals(worksheet):
# Adjust the column width for clarity.
worksheet.set_column('A:A', 20)
worksheet.write('A7', 'South')
worksheet.write('A8', 'South')
worksheet.write('A9', 'South')
worksheet.write('A10', 'South')
worksheet.write('A11', 'South Total', bold)
worksheet.write('B7', 400)
worksheet.write('B8', 600)
worksheet.write('B9', 500)
worksheet.write('B10', 600)
worksheet.write('B11', '=SUBTOTAL(9,B7:B10)', bold)
###############################################################################
#
# Example 1: A worksheet with outlined rows. It also includes SUBTOTAL()
# functions so that it looks like the type of automatic outlines that are
# generated when you use the Excel Data->SubTotals menu item.
#
worksheet1.set_row(1, None, None, {'level': 2})
worksheet1.set_row(2, None, None, {'level': 2})
worksheet1.set_row(3, None, None, {'level': 2})
worksheet1.set_row(4, None, None, {'level': 2})
worksheet1.set_row(5, None, None, {'level': 1})
###############################################################################
#
# Example 2: Create a worksheet with collapsed outlined rows.
# This is the same as the example 1 except that the all rows are collapsed.
# Note: We need to indicate the rows that contains the collapsed symbol '+'
# with the optional parameter, 'collapsed'.
#
worksheet2.set_row(1, None, None, {'level': 2, 'hidden': True})
worksheet2.set_row(2, None, None, {'level': 2, 'hidden': True})
worksheet2.set_row(3, None, None, {'level': 2, 'hidden': True})
worksheet2.set_row(4, None, None, {'level': 2, 'hidden': True})
worksheet2.set_row(5, None, None, {'level': 1, 'hidden': True})
###############################################################################
#
# Example 3: Create a worksheet with collapsed outlined rows.
# Same as the example 1 except that the two sub-totals are collapsed.
#
worksheet3.set_row(1, None, None, {'level': 2, 'hidden': True})
worksheet3.set_row(2, None, None, {'level': 2, 'hidden': True})
worksheet3.set_row(3, None, None, {'level': 2, 'hidden': True})
worksheet3.set_row(4, None, None, {'level': 2, 'hidden': True})
###############################################################################
#
# Example 4: Create a worksheet with outlined rows.
# Same as the example 1 except that the two sub-totals are collapsed.
#
worksheet4.set_row(1, None, None, {'level': 2, 'hidden': True})
worksheet4.set_row(2, None, None, {'level': 2, 'hidden': True})
worksheet4.set_row(3, None, None, {'level': 2, 'hidden': True})
worksheet4.set_row(4, None, None, {'level': 2, 'hidden': True})
worksheet4.set_row(5, None, None, {'level': 1, 'hidden': True,
'collapsed': True})
###############################################################################
#
# Example 5: Create a worksheet with outlined columns.
#
data = [
['Month', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Total'],
['North', 50, 20, 15, 25, 65, 80, '=SUM(B2:G2)'],
['South', 10, 20, 30, 50, 50, 50, '=SUM(B3:G3)'],
['East', 45, 75, 50, 15, 75, 100, '=SUM(B4:G4)'],
['West', 15, 15, 55, 35, 20, 50, '=SUM(B5:G5)']]
###############################################################################
#
# Example 6: Create a worksheet with collapsed outlined columns.
# This is the same as the previous example except with collapsed columns.
#
workbook.close()
This program is an example setting document properties. See the set_properties() workbook
method for more details.
##############################################################################
#
# An example of adding document properties to a XlsxWriter file.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('doc_properties.xlsx')
worksheet = workbook.add_worksheet()
workbook.set_properties({
'title': 'This is an example spreadsheet',
'subject': 'With document properties',
worksheet.set_column('A:A', 70)
worksheet.write('A1', "Select 'Workbook Properties' to see properties.")
workbook.close()
This program is an example of reading in data from a UTF-8 encoded text file and converting it to
a worksheet.
The main trick is to ensure that the data read in is converted to UTF-8 within the Python program.
The XlsxWriter module will then take care of writing the encoding to the Excel file.
The encoding of the input data shouldn’t matter once it can be converted to UTF-8 via the codecs
module.
##############################################################################
#
# A simple example of converting some Unicode text to an Excel file using
# the XlsxWriter Python module.
#
# This example generates a spreadsheet with some Polish text from a file
# with UTF8 encoded text.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import codecs
import xlsxwriter
row = 0
col = 0
workbook.close()
This program is an example of reading in data from a Shift JIS encoded text file and converting it
to a worksheet.
The main trick is to ensure that the data read in is converted to UTF-8 within the Python program.
The XlsxWriter module will then take care of writing the encoding to the Excel file.
The encoding of the input data shouldn’t matter once it can be converted to UTF-8 via the codecs
module.
##############################################################################
#
# A simple example of converting some Unicode text to an Excel file using
# the XlsxWriter Python module.
#
# This example generates a spreadsheet with some Japanese text from a file
# with Shift-JIS encoded text.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import codecs
import xlsxwriter
row = 0
col = 0
workbook.close()
This program is an example of setting worksheet tab colors. See the set_tab_color() method
for more details.
#######################################################################
#
# Example of how to set Excel worksheet tab colors using Python
# and the XlsxWriter module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('tab_colors.xlsx')
workbook.close()
workbook = xlsxwriter.Workbook('diag_border.xlsx')
worksheet = workbook.add_worksheet()
format4 = workbook.add_format({
'diag_type': 3,
'diag_border': 7,
'diag_color': 'red',
})
workbook.close()
This program is an example cell locking and formula hiding in an Excel worksheet using the pro-
tect() worksheet method and the Format set_locked() property.
Note, that Excel’s behavior is that all cells are locked once you set the default protection. Therefore
you need to explicitly unlock cells rather than explicitly lock them.
########################################################################
#
# Example of cell locking and formula hiding in an Excel worksheet
# using Python and the XlsxWriter module.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('protection.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
This program is an example of how to hide a worksheet using the hide() method.
#######################################################################
#
# Example of how to hide a worksheet with XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('hide_sheet.xlsx')
worksheet1 = workbook.add_worksheet()
worksheet2 = workbook.add_worksheet()
worksheet3 = workbook.add_worksheet()
worksheet1.set_column('A:A', 30)
worksheet2.set_column('A:A', 30)
worksheet3.set_column('A:A', 30)
workbook.close()
However, in order to hide a large number of rows, for example all the rows after row 8, we need to
use an Excel optimization to hide rows without setting each one, (of approximately 1 million rows).
To do this we use the set_default_row() method.
Columns don’t require this optimization and can be hidden using set_column().
###############################################################################
#
# Example of how to hide rows and columns in XlsxWriter. In order to
# hide rows without setting each one, (of approximately 1 million rows),
# Excel uses an optimizations to hide all rows that don't have data.
#
workbook = xlsxwriter.Workbook('hide_row_col.xlsx')
worksheet = workbook.add_worksheet()
# Columns can be hidden explicitly. This doesn't increase the file size..
worksheet.set_column('G:XFD', None, None, {'hidden': True})
workbook.close()
##############################################################################
#
# Example of how to subclass the Workbook and Worksheet objects. We also
# override the default worksheet.write() method to show how that is done.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
from xlsxwriter.workbook import Workbook
from xlsxwriter.worksheet import Worksheet
from xlsxwriter.worksheet import convert_cell_args
from xlsxwriter.compatibility import str_types
class MyWorksheet(Worksheet):
"""
Subclass of the XlsxWriter Worksheet class to override the default
write() method.
"""
@convert_cell_args
def write(self, row, col, *args):
data = args[0]
31.43. Example: Example of subclassing the Workbook and Worksheet classes 477
Creating Excel files with Python and XlsxWriter, Release 1.2.9
class MyWorkbook(Workbook):
"""
Subclass of the XlsxWriter Workbook class to override the default
Worksheet class with our custom class.
"""
return worksheet
# The code from now on will be the same as a normal "Workbook" program.
worksheet = workbook.add_worksheet()
workbook.close()
Example of how to subclass the Workbook and Worksheet objects. See also the simpler inheri-
tance1.py example.
In this example we see an approach to implementing a simulated autofit in a user application. This
works by overriding the write_string() method to track the maximum width string in each
column and then set the column widths when closing the workbook.
Some notes on this:
• This isn’t a fully functional autofit example (as shown by the longer strings in the screen
shot). It is only a proof or concept or a framework to try out solutions.
• The hard part is coming up with an accurate (or mainly accurate) excel_string_width()
function. One possibility is to use the PIL ImageFont() method and convert the pixel width
back to a character width.
• A more rigorous approach would have to consider font sizes, bold, italic, etc.
• The set_column() calls in close() will override any others set by the user. They also
don’t set any column formats.
• It doesn’t work for horizontal merge ranges.
• There are probably some other corner cases hiding here.
##############################################################################
#
# Example of how to subclass the Workbook and Worksheet objects. See also the
# simpler inheritance1.py example.
#
# In this example we see an approach to implementing a simulated autofit in a
# user application. This works by overriding the write_string() method to
# track the maximum width string in each column and then set the column
# widths.
#
# Note: THIS ISN'T A FULLY FUNCTIONAL AUTOFIT EXAMPLE. It is only a proof or
# concept or a framework to try out solutions.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
from xlsxwriter.workbook import Workbook
from xlsxwriter.worksheet import Worksheet
from xlsxwriter.worksheet import convert_cell_args
def excel_string_width(str):
"""
Calculate the length of the string in Excel character units. This is only
an example and won't give accurate results. It will need to be replaced
by something more rigorous.
"""
string_width = len(str)
if string_width == 0:
return 0
else:
return string_width * 1.1
class MyWorksheet(Worksheet):
"""
Subclass of the XlsxWriter Worksheet class to override the default
write_string() method.
"""
@convert_cell_args
def write_string(self, row, col, string, cell_format=None):
# Overridden write_string() method to store the maximum string width
# seen in each column.
# Check that row and col are valid and store max and min values.
if self._check_dimensions(row, col):
return -1
# Set the min width for the cell. In some cases this might be the
# default width of 8.43. In this case we use 0 and adjust for all
# string widths.
min_width = 0
# Check if it the string is the largest we have seen for this column.
string_width = excel_string_width(string)
if string_width > min_width:
max_width = self.max_column_widths.get(col, min_width)
if string_width > max_width:
self.max_column_widths[col] = string_width
cell_format)
class MyWorkbook(Workbook):
"""
Subclass of the XlsxWriter Workbook class to override the default
Worksheet class with our custom class.
"""
return worksheet
def close(self):
# We apply the stored column widths for each worksheet when we close
# the workbook. This will override any other set_column() values that
# may have been applied. This could be handled in the application code
# below, instead.
for worksheet in self.worksheets():
for column, width in worksheet.max_column_widths.items():
worksheet.set_column(column, column, width)
# The code from now on will be the same as a normal "Workbook" program.
worksheet = workbook.add_worksheet()
worksheet.write('B3', 'Foo')
worksheet.write('C1', 'F')
worksheet.write('C2', 'Fo')
worksheet.write('C3', 'Foo')
worksheet.write('C4', 'Food')
# Write a number.
worksheet.write(0, 5, 123456)
workbook.close()
This program is an example of how to add a button connected to a VBA macro to a worksheet.
See Working with VBA Macros for more details.
#######################################################################
#
# An example of adding macros to an XlsxWriter file using a VBA project
# file extracted from an existing Excel xlsm file.
#
# The vba_extract.py utility supplied with XlsxWriter can be used to extract
# the vbaProject.bin file.
#
# An embedded macro is connected to a form button on the worksheet.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
worksheet.set_column('A:A', 30)
workbook.close()
THIRTYTWO
CHART EXAMPLES
The following are some of the examples included in the examples directory of the XlsxWriter
distribution.
See the The Chart Class and Working with Charts for more details.
#######################################################################
#
# An example of a simple Excel chart with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart.xlsx')
worksheet = workbook.add_worksheet()
485
Creating Excel files with Python and XlsxWriter, Release 1.2.9
worksheet.write_column('A1', data[0])
worksheet.write_column('B1', data[1])
worksheet.write_column('C1', data[2])
# Configure the charts. In simplest case we just add some data series.
chart.add_series({'values': '=Sheet1!$A$1:$A$5'})
chart.add_series({'values': '=Sheet1!$B$1:$B$5'})
chart.add_series({'values': '=Sheet1!$C$1:$C$5'})
workbook.close()
#######################################################################
#
# An example of creating Excel Area charts with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_area.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[40, 40, 50, 30, 25, 50],
#######################################################################
#
# Create an area chart.
#
chart1 = workbook.add_chart({'type': 'area'})
#######################################################################
#
# Create a stacked area chart sub-type.
#
chart2 = workbook.add_chart({'type': 'area', 'subtype': 'stacked'})
chart2.add_series({
'name': '=Sheet1!$C$1',
'categories': '=Sheet1!$A$2:$A$7',
'values': '=Sheet1!$C$2:$C$7',
})
#######################################################################
#
# Create a percent stacked area chart sub-type.
#
chart3 = workbook.add_chart({'type': 'area', 'subtype': 'percent_stacked'})
workbook.close()
#######################################################################
#
# An example of creating Excel Bar charts with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_bar.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
[30, 60, 70, 50, 40, 30],
]
#######################################################################
#
# Create a new bar chart.
#
chart1 = workbook.add_chart({'type': 'bar'})
})
#######################################################################
#
# Create a stacked chart sub-type.
#
chart2 = workbook.add_chart({'type': 'bar', 'subtype': 'stacked'})
#######################################################################
#
workbook.close()
#######################################################################
#
# An example of creating Excel Column charts with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_column.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
[30, 60, 70, 50, 40, 30],
]
#######################################################################
#
# Create a new column chart.
#
chart1 = workbook.add_chart({'type': 'column'})
})
#######################################################################
#
# Create a stacked chart sub-type.
#
chart2 = workbook.add_chart({'type': 'column', 'subtype': 'stacked'})
#######################################################################
#
workbook.close()
Example of creating an Excel line charts. The X axis of a line chart is a category axis with fixed
point spacing. For a line chart with arbitrary point spacing see the Scatter chart type.
Chart 1 in the following example is a default line chart:
#######################################################################
#
# An example of creating Excel Line charts with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_line.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
[30, 60, 70, 50, 40, 30],
]
chart1.add_series({
'name': ['Sheet1', 0, 2],
'categories': ['Sheet1', 1, 0, 6, 0],
'values': ['Sheet1', 1, 2, 6, 2],
})
# Set an Excel chart style. Colors with white outline and shadow.
chart1.set_style(10)
#######################################################################
#
# Create a stacked line chart sub-type.
#
chart2 = workbook.add_chart({'type': 'line', 'subtype': 'stacked'})
#######################################################################
#
# Create a percent stacked line chart sub-type.
#
chart3 = workbook.add_chart({'type': 'line', 'subtype': 'percent_stacked'})
workbook.close()
Example of creating Excel Pie charts. Chart 1 in the following example is:
method. However, Pie charts are a special case since each segment is represented as a point
and as such it is necessary to assign formatting to each point in the series.
#######################################################################
#
# An example of creating Excel Pie charts with Python and XlsxWriter.
#
# The demo also shows how to set segment colors. It is possible to
# define chart colors for most types of XlsxWriter charts
# via the add_series() method. However, Pie/Doughnut charts are a special
# case since each segment is represented as a point so it is necessary to
# assign formatting to each point in the series.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_pie.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Category', 'Values']
data = [
['Apple', 'Cherry', 'Pecan'],
[60, 30, 10],
]
#######################################################################
#
# Create a new chart object.
#
chart1 = workbook.add_chart({'type': 'pie'})
# Configure the series. Note the use of the list syntax to define ranges:
chart1.add_series({
'name': 'Pie sales data',
'categories': ['Sheet1', 1, 0, 3, 0],
'values': ['Sheet1', 1, 1, 3, 1],
})
# Add a title.
chart1.set_title({'name': 'Popular Pie Types'})
# Set an Excel chart style. Colors with white outline and shadow.
chart1.set_style(10)
#######################################################################
#
# Create a Pie chart with user defined segment colors.
#
# Add a title.
chart2.set_title({'name': 'Pie Chart with user defined colors'})
#######################################################################
#
# Create a Pie chart with rotation of the segments.
#
# Add a title.
chart3.set_title({'name': 'Pie Chart with segment rotation'})
workbook.close()
Example of creating Excel Doughnut charts. Chart 1 in the following example is:
#######################################################################
#
# An example of creating Excel Doughnut charts with Python and XlsxWriter.
#
# The demo also shows how to set segment colors. It is possible to
# define chart colors for most types of XlsxWriter charts
# via the add_series() method. However, Pie/Doughnut charts are a special
# case since each segment is represented as a point so it is necessary to
# assign formatting to each point in the series.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_doughnut.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Category', 'Values']
data = [
['Glazed', 'Chocolate', 'Cream'],
[50, 35, 15],
]
#######################################################################
#
# Create a new chart object.
#
chart1 = workbook.add_chart({'type': 'doughnut'})
# Configure the series. Note the use of the list syntax to define ranges:
chart1.add_series({
'name': 'Doughnut sales data',
'categories': ['Sheet1', 1, 0, 3, 0],
'values': ['Sheet1', 1, 1, 3, 1],
})
# Add a title.
chart1.set_title({'name': 'Popular Doughnut Types'})
# Set an Excel chart style. Colors with white outline and shadow.
chart1.set_style(10)
#######################################################################
#
# Create a Doughnut chart with user defined segment colors.
#
# Add a title.
chart2.set_title({'name': 'Doughnut Chart with user defined colors'})
#######################################################################
#
# Create a Doughnut chart with rotation of the segments.
#
# Add a title.
chart3.set_title({'name': 'Doughnut Chart with segment rotation'})
#######################################################################
#
# Create a Doughnut chart with user defined hole size and other options.
#
],
})
# Set a 3D style.
chart4.set_style(26)
# Add a title.
chart4.set_title({'name': 'Doughnut Chart with options applied'})
workbook.close()
#######################################################################
#
# An example of creating Excel Scatter charts with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_scatter.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
#######################################################################
#
# Create a new scatter chart.
#
chart1 = workbook.add_chart({'type': 'scatter'})
#######################################################################
#
# Create a scatter chart sub-type with straight lines and markers.
#
chart2 = workbook.add_chart({'type': 'scatter',
'subtype': 'straight_with_markers'})
#######################################################################
#
# Create a scatter chart sub-type with straight lines and no markers.
#
chart3 = workbook.add_chart({'type': 'scatter',
'subtype': 'straight'})
#######################################################################
#
# Create a scatter chart sub-type with smooth lines and markers.
#
chart4 = workbook.add_chart({'type': 'scatter',
'subtype': 'smooth_with_markers'})
#######################################################################
#
# Create a scatter chart sub-type with smooth lines and no markers.
#
chart5 = workbook.add_chart({'type': 'scatter',
'subtype': 'smooth'})
workbook.close()
#######################################################################
#
# An example of creating Excel Radar charts with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_radar.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[30, 60, 70, 50, 40, 30],
#######################################################################
#
# Create a new radar chart.
#
chart1 = workbook.add_chart({'type': 'radar'})
#######################################################################
#
# Create a radar chart with markers chart sub-type.
#
chart2 = workbook.add_chart({'type': 'radar', 'subtype': 'with_markers'})
chart2.add_series({
'name': '=Sheet1!$C$1',
'categories': '=Sheet1!$A$2:$A$7',
'values': '=Sheet1!$C$2:$C$7',
})
#######################################################################
#
# Create a filled radar chart sub-type.
#
chart3 = workbook.add_chart({'type': 'radar', 'subtype': 'filled'})
workbook.close()
#######################################################################
#
# An example of creating Excel Stock charts with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
from datetime import datetime
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_stock.xlsx')
worksheet = workbook.add_worksheet()
# Add the worksheet data that the charts will refer to.
headings = ['Date', 'High', 'Low', 'Close']
data = [
['2007-01-01', '2007-01-02', '2007-01-03', '2007-01-04', '2007-01-05'],
[27.2, 25.03, 19.05, 20.34, 18.5],
[23.49, 19.55, 15.12, 17.84, 16.34],
[25.45, 23.05, 17.32, 20.45, 17.34],
]
worksheet.set_column('A:D', 11)
chart.add_series({
'categories': '=Sheet1!$A$2:$A$6',
'values': '=Sheet1!$C$2:$C$6',
})
chart.add_series({
'categories': '=Sheet1!$A$2:$A$6',
'values': '=Sheet1!$D$2:$D$6',
})
worksheet.insert_chart('E9', chart)
workbook.close()
An example showing all 48 default chart styles available in Excel 2007 using the chart
set_style() method.
Note, these styles are not the same as the styles available in Excel 2013.
#######################################################################
#
# An example showing all 48 default chart styles available in Excel 2007
# using Python and XlsxWriter. Note, these styles are not the same as
# the styles available in Excel 2013.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_styles.xlsx')
workbook.close()
#######################################################################
#
# An example of an Excel chart with patterns using Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_pattern.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Shingle', 'Brick']
data = [
[105, 150, 130, 90 ],
[50, 120, 100, 110],
]
# Configure the charts. Add two series with patterns. The gap is used to make
# the patterns more visible.
chart.add_series({
'name': '=Sheet1!$A$1',
'values': '=Sheet1!$A$2:$A$5',
'pattern': {
'pattern': 'shingle',
'fg_color': '#804000',
'bg_color': '#c68c53'
},
'border': {'color': '#804000'},
'gap': 70,
})
chart.add_series({
'name': '=Sheet1!$B$1',
'values': '=Sheet1!$B$2:$B$5',
'pattern': {
'pattern': 'horizontal_brick',
'fg_color': '#b30000',
'bg_color': '#ff6666'
},
'border': {'color': '#b30000'},
})
workbook.close()
Example of creating an Excel chart with gradient fills, in the columns and in the plot area.
#######################################################################
#
# An example of creating an Excel charts with gradient fills using
# Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_gradient.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
[30, 60, 70, 50, 40, 30],
]
chart.add_series({
'name': '=Sheet1!$B$1',
'categories': '=Sheet1!$A$2:$A$7',
'values': '=Sheet1!$B$2:$B$7',
'gradient': {'colors': ['#963735', '#F1DCDB']}
})
workbook.close()
Example of creating an Excel Line chart with a secondary axis. Note, the primary and secondary
chart type are the same. The next example shows a secondary chart of a different type.
#######################################################################
#
# An example of creating an Excel Line chart with a secondary axis
# using Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_secondary_axis.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Aliens', 'Humans']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
]
chart.add_series({
'name': '=Sheet1!$B$1',
'values': '=Sheet1!$B$2:$B$7',
})
chart.set_legend({'position': 'right'})
workbook.close()
In the second example we create a similar combined column and line chart except that the sec-
ondary chart has a secondary Y axis.
#######################################################################
#
# An example of a Combined chart in XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
from xlsxwriter.workbook import Workbook
workbook = Workbook('chart_combined.xlsx')
worksheet = workbook.add_worksheet()
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
[30, 60, 70, 50, 40, 30],
]
#
# In the first example we will create a combined column and line chart.
# They will share the same X and Y axes.
#
# Create a new column chart. This will use this as the primary chart.
column_chart1 = workbook.add_chart({'type': 'column'})
column_chart1.add_series({
'name': '=Sheet1!$B$1',
'categories': '=Sheet1!$A$2:$A$7',
'values': '=Sheet1!$B$2:$B$7',
})
# Create a new column chart. This will use this as the secondary chart.
line_chart1 = workbook.add_chart({'type': 'line'})
# Add a chart title and some axis labels. Note, this is done via the
# primary chart.
column_chart1.set_title({ 'name': 'Combined chart - same Y axis'})
column_chart1.set_x_axis({'name': 'Test number'})
column_chart1.set_y_axis({'name': 'Sample length (mm)'})
#
# In the second example we will create a similar combined column and line
# chart except that the secondary chart will have a secondary Y axis.
#
# Create a new column chart. This will use this as the primary chart.
column_chart2 = workbook.add_chart({'type': 'column'})
# Create a new column chart. This will use this as the secondary chart.
line_chart2 = workbook.add_chart({'type': 'line'})
# Configure the data series for the secondary chart. We also set a
# secondary Y axis via (y2_axis). This is the only difference between
# this and the first example, apart from the axis label below.
line_chart2.add_series({
'name': '=Sheet1!$C$1',
'categories': '=Sheet1!$A$2:$A$7',
'values': '=Sheet1!$C$2:$C$7',
'y2_axis': True,
})
workbook.close()
#######################################################################
#
# An example of creating of a Pareto chart with Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_pareto.xlsx')
worksheet = workbook.add_worksheet()
# Add the worksheet data that the charts will refer to.
headings = ['Reason', 'Number', 'Percentage']
reasons = [
'Traffic', 'Child care', 'Public Transport', 'Weather',
'Overslept', 'Emergency',
]
# Add a series.
column_chart.add_series({
'categories': '=Sheet1!$A$2:$A$7',
'values': '=Sheet1!$B$2:$B$7',
})
# Set the title and scale of the Y axes. Note, the secondary axis is set from
# the primary chart.
column_chart.set_y_axis({
'name': 'Respondents (number)',
'min': 0,
'max': 120
})
column_chart.set_y2_axis({'max': 1})
line_chart.add_series({
'categories': '=Sheet1!$A$2:$A$7',
'values': '=Sheet1!$C$2:$C$7',
'marker': {'type': 'automatic'},
'y2_axis': 1,
})
workbook.close()
A Gauge Chart isn’t a native chart type in Excel. It is constructed by combining a doughnut chart
and a pie chart and by using some non-filled elements. This example follows the following online
example of how to create a Gauge Chart in Excel: https://www.excel-easy.com/examples/gauge-
chart.html
#######################################################################
#
# An example of creating a Gauge Chart in Excel with Python and XlsxWriter.
#
# A Gauge Chart isn't a native chart type in Excel. It is constructed by
# combining a doughnut chart and a pie chart and by using some non-filled
# elements. This example follows the following online example of how to create
# a Gauge Chart in Excel: https://www.excel-easy.com/examples/gauge-chart.html
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_gauge.xlsx')
worksheet = workbook.add_worksheet()
# Add some data for the Doughnut and Pie charts. This is set up so the
# gauge goes from 0-100. It is initially set at 75%.
worksheet.write_column('H2', ['Donut', 25, 50, 25, 100])
worksheet.write_column('I2', ['Pie', 75, 1, '=200-I4-I3'])
workbook.close()
Example of creating a clustered Excel chart where there are two levels of category on the X axis.
The categories in clustered charts are 2D ranges, instead of the more normal 1D ranges. The
series are shown as formula strings for clarity but you can also use the a list syntax.
#######################################################################
#
# A demo of a clustered category chart in XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
from xlsxwriter.workbook import Workbook
workbook = Workbook('chart_clustered.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Types', 'Sub Type', 'Value 1', 'Value 2', 'Value 3']
data = [
['Type 1', 'Sub Type A', 5000, 8000, 6000],
['', 'Sub Type B', 2000, 3000, 4000],
['', 'Sub Type C', 250, 1000, 2000],
['Type 2', 'Sub Type D', 6000, 6000, 6500],
['', 'Sub Type E', 500, 300, 200],
]
# Configure the series. Note, that the categories are 2D ranges (from column A
# to column B). This creates the clusters. The series are shown as formula
# strings for clarity but you can also use the list syntax. See the docs.
chart.add_series({
'categories': '=Sheet1!$A$2:$B$6',
'values': '=Sheet1!$C$2:$C$6',
})
chart.add_series({
'categories': '=Sheet1!$A$2:$B$6',
'values': '=Sheet1!$D$2:$D$6',
})
chart.add_series({
'categories': '=Sheet1!$A$2:$B$6',
'values': '=Sheet1!$E$2:$E$6',
})
workbook.close()
Date Category Axes are a special case of Category axes in Excel which give them some of the
properties of Values axes.
For example, Excel doesn’t normally allow minimum and maximum values to be set for category
axes. However, date axes are an exception.
In XlsxWriter Date Category Axes are set using the date_axis option in set_x_axis() or
set_y_axis():
chart.set_x_axis({'date_axis': True})
If used, the min and max values should be set as Excel times or dates.
#######################################################################
#
# An example of creating an Excel charts with a date axis using
# Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
workbook = xlsxwriter.Workbook('chart_date_axis.xlsx')
worksheet = workbook.add_worksheet()
chart = workbook.add_chart({'type': 'line'})
date_format = workbook.add_format({'num_format': 'dd/mm/yyyy'})
date(2013, 1, 6),
date(2013, 1, 7),
date(2013, 1, 8),
date(2013, 1, 9),
date(2013, 1, 10)]
values = [10, 30, 20, 40, 20, 60, 50, 40, 30, 30]
# Configure the X axis as a Date axis and set the max and min limits.
chart.set_x_axis({
'date_axis': True,
'min': date(2013, 1, 2),
'max': date(2013, 1, 9),
})
workbook.close()
Chart 2 is a column chart with default data table with legend keys:
#######################################################################
#
# An example of creating Excel Column charts with data tables using
# Python and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_data_table.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
#######################################################################
#
# Create a column chart with a data table.
#
chart1 = workbook.add_chart({'type': 'column'})
#######################################################################
#
# Create a column chart with a data table and legend keys.
#
chart2 = workbook.add_chart({'type': 'column'})
# Set a data table on the X-Axis with the legend keys shown.
chart2.set_table({'show_keys': True})
# Hide the chart legend since the keys are shown on the data table.
chart2.set_legend({'position': 'none'})
workbook.close()
A demo of an various Excel chart data tools that are available via an XlsxWriter chart. These
include, Trendlines, Data Labels, Error Bars, Drop Lines, High-Low Lines and Up-Down Bars.
Chart 1 in the following example is a chart with trendlines:
#######################################################################
#
# A demo of an various Excel chart data tools that are available via
# an XlsxWriter chart.
#
# These include, Trendlines, Data Labels, Error Bars, Drop Lines,
# High-Low Lines and Up-Down Bars.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chart_data_tools.xlsx')
worksheet = workbook.add_worksheet()
bold = workbook.add_format({'bold': 1})
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Data 1', 'Data 2']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
[30, 60, 70, 50, 40, 30],
]
#######################################################################
#
# Trendline example.
#
# Create a Line chart.
chart1 = workbook.add_chart({'type': 'line'})
#######################################################################
#
# Data Labels and Markers example.
#
# Create a Line chart.
chart2 = workbook.add_chart({'type': 'line'})
#######################################################################
#
# Error Bars example.
#
# Create a Line chart.
chart3 = workbook.add_chart({'type': 'line'})
#######################################################################
#
# Up-Down Bars example.
#
# Create a Line chart.
chart4 = workbook.add_chart({'type': 'line'})
#######################################################################
#
#######################################################################
#
# Drop Lines example.
#
# Create a Line chart.
chart6 = workbook.add_chart({'type': 'line'})
workbook.close()
#######################################################################
#
# An example of creating an Excel chart in a chartsheet with Python
# and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import xlsxwriter
workbook = xlsxwriter.Workbook('chartsheet.xlsx')
chartsheet = workbook.add_chartsheet()
# Add the worksheet data that the charts will refer to.
headings = ['Number', 'Batch 1', 'Batch 2']
data = [
[2, 3, 4, 5, 6, 7],
[10, 40, 50, 20, 10, 50],
[30, 60, 70, 50, 40, 30],
]
# Display the chartsheet as the active sheet when the workbook is opened.
chartsheet.activate();
workbook.close()
THIRTYTHREE
The following are some of the examples included in the examples directory of the XlsxWriter
distribution.
They show how to use XlsxWriter with Pandas.
A simple example of converting a Pandas dataframe to an Excel file using Pandas and XlsxWriter.
See Working with Python Pandas and XlsxWriter for more details.
549
Creating Excel files with Python and XlsxWriter, Release 1.2.9
##############################################################################
#
# A simple example of converting a Pandas dataframe to an xlsx file using
# Pandas and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
# Close the Pandas Excel writer and output the Excel file.
writer.save()
##############################################################################
#
# An example of writing multiple dataframes to worksheets using Pandas and
# XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
df1.to_excel(writer, sheet_name='Sheet1')
df2.to_excel(writer, sheet_name='Sheet2')
df3.to_excel(writer, sheet_name='Sheet3')
# Close the Pandas Excel writer and output the Excel file.
writer.save()
An example of positioning dataframes in a worksheet using Pandas and XlsxWriter. It also demon-
strates how to write a dataframe without the header and index.
##############################################################################
#
# An example of positioning dataframes in a worksheet using Pandas and
# XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
# It is also possible to write the dataframe without the header and index.
df4.to_excel(writer, sheet_name='Sheet1',
startrow=7, startcol=4, header=False, index=False)
# Close the Pandas Excel writer and output the Excel file.
writer.save()
A simple example of converting a Pandas dataframe to an Excel file with a chart using Pandas
and XlsxWriter.
##############################################################################
#
# An example of converting a Pandas dataframe to an xlsx file with a chart
# using Pandas and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
# Close the Pandas Excel writer and output the Excel file.
writer.save()
An example of converting a Pandas dataframe to an Excel file with a conditional formatting using
Pandas and XlsxWriter.
##############################################################################
#
# An example of converting a Pandas dataframe to an xlsx file with a
import pandas as pd
# Close the Pandas Excel writer and output the Excel file.
writer.save()
An example of converting a Pandas dataframe with datetimes to an Excel file with a default date-
time and date format using Pandas and XlsxWriter.
##############################################################################
#
# An example of converting a Pandas dataframe with datetimes to an xlsx file
# with a default datetime and date format using Pandas and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
from datetime import datetime, date
# Get the xlsxwriter workbook and worksheet objects in order to set the column
# widths, to make the dates clearer.
workbook = writer.book
worksheet = writer.sheets['Sheet1']
worksheet.set_column('B:C', 20)
# Close the Pandas Excel writer and output the Excel file.
writer.save()
An example of converting a Pandas dataframe to an Excel file with column formats using Pandas
and XlsxWriter.
It isn’t possible to format any cells that already have a format such as the index or headers or any
cells that contain dates or datetimes.
Note: This feature requires Pandas >= 0.16.
##############################################################################
#
# An example of converting a Pandas dataframe to an xlsx file
# with column formats using Pandas and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
worksheet = writer.sheets['Sheet1']
# Note: It isn't possible to format any cells that already have a format such
# as the index or headers or any cells that contain dates or datetimes.
# Close the Pandas Excel writer and output the Excel file.
writer.save()
33.8 Example: Pandas Excel output with user defined header format
An example of converting a Pandas dataframe to an Excel file with a user defined header format
using Pandas and XlsxWriter.
##############################################################################
#
# An example of converting a Pandas dataframe to an xlsx file
# with a user defined header format.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
# Convert the dataframe to an XlsxWriter Excel object. Note that we turn off
# the default header and skip one row to allow us to insert a user defined
# header.
df.to_excel(writer, sheet_name='Sheet1', startrow=1, header=False)
# Close the Pandas Excel writer and output the Excel file.
writer.save()
A simple example of converting a Pandas dataframe to an Excel file with a line chart using Pandas
and XlsxWriter.
##############################################################################
#
# An example of converting a Pandas dataframe to an xlsx file with a line
# chart using Pandas and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
import random
# Access the XlsxWriter workbook and worksheet objects from the dataframe.
workbook = writer.book
worksheet = writer.sheets[sheet_name]
chart.add_series({
'name': ['Sheet1', 0, col],
'categories': ['Sheet1', 1, 0, max_row, 0],
'values': ['Sheet1', 1, col, max_row, col],
})
# Close the Pandas Excel writer and output the Excel file.
writer.save()
An example of converting a Pandas dataframe to an Excel file with a column chart using Pandas
and XlsxWriter.
##############################################################################
#
# An example of converting a Pandas dataframe to an xlsx file with a grouped
# column chart using Pandas and XlsxWriter.
#
# Copyright 2013-2020, John McNamara, [email protected]
#
import pandas as pd
# Access the XlsxWriter workbook and worksheet objects from the dataframe.
workbook = writer.book
worksheet = writer.sheets[sheet_name]
# Close the Pandas Excel writer and output the Excel file.
writer.save()
THIRTYFOUR
34.1 OpenPyXL
34.2 Xlwings
34.3 XLWT
34.4 XLRD
565
Creating Excel files with Python and XlsxWriter, Release 1.2.9
THIRTYFIVE
The following are some libraries or applications that wrap or extend XlsxWriter.
35.1 Pandas
Python Pandas is a Python data analysis library. It can read, filter and re-arrange small and large
data sets and output them in a range of formats including Excel.
XlsxWriter is available as an Excel output engine in Pandas. See also See Working with Python
Pandas and XlsxWriter .
35.2 XlsxPandasFormatter
XlsxPandasFormatter is a helper class that wraps the worksheet, workbook and dataframe ob-
jects written by Pandas to_excel() method using the xlsxwriter engine to allow consistent
formatting of cells.
567
Creating Excel files with Python and XlsxWriter, Release 1.2.9
THIRTYSIX
This section lists known issues and bugs and gives some information on how to submit bug reports.
You may occasionally see an Excel warning when opening an XlsxWriter file like:
Excel could not open file.xlsx because some content is unreadable. Do you want to
open and repair this workbook.
This ominous sounding message is Excel’s default warning for any validation error in the XML
used for the components of the XLSX file.
The error message and the actual file aren’t helpful in debugging issues like this. If you do en-
counter this warning you should open an issue on GitHub with a program to replicate it (see
Reporting Bugs).
The following exception, or similar, can occur if the close() method isn’t used at the end of the
program:
Exception Exception: Exception('Exception caught in workbook destructor.
Explicit close() may be required for workbook.',)
in <bound method Workbook.__del__ of <xlsxwriter.workbook.Workbookobject
at 0x103297d50>>
Note, it is possible that this exception will also be raised as part of another exception that occurs
during workbook destruction. In either case ensure that there is an explicit workbook.close()
in the program.
569
Creating Excel files with Python and XlsxWriter, Release 1.2.9
There are a few reasons why a formula written by XlsxWriter would generate a #NAME? error in
Excel:
• Invalid formula syntax.
• Non-English function names.
• Semi-colon separators instead of commas.
• Use of Excel 2010 and later functions without a prefix.
See Working with Formulas and Dealing with formula errors for a more details and a explanation
of how to debug the issue.
Due to wide range of possible formulas and interdependencies between them XlsxWriter doesn’t,
and realistically cannot, calculate the result of a formula when it is written to an XLSX file. Instead,
it stores the value 0 as the formula result. It then sets a global flag in the XLSX file to say that all
formulas and functions should be recalculated when the file is opened.
This is the method recommended in the Excel documentation and in general it works fine with
spreadsheet applications. However, applications that don’t have a facility to calculate formulas,
such as Excel Viewer, or several mobile applications, will only display the 0 results.
See Formula Results for more details and a workaround.
36.5 Images not displayed correctly in Excel 2001 for Mac and non-
Excel applications
Images inserted into worksheets via insert_image() may not display correctly in Excel 2011
for Mac and non-Excel applications such as OpenOffice and LibreOffice. Specifically the images
may looked stretched or squashed.
This is not specifically an XlsxWriter issue. It also occurs with files created in Excel 2007 and
Excel 2010.
36.6 Charts series created from Worksheet Tables cannot have user
defined names
In Excel, charts created from Worksheet Tables have a limitation where the data series name, if
specified, must refer to a cell within the table.
To workaround this Excel limitation you can specify a user defined name in the table and refer to
that from the chart. See Charts from Worksheet Tables.
THIRTYSEVEN
REPORTING BUGS
The bug you are reporting may already be fixed in the latest version of the module. You can check
which version of XlsxWriter that you are using as follows:
python -c 'import xlsxwriter; print(xlsxwriter.__version__)'
Check the Changes in XlsxWriter section to see what has changed in the latest versions.
Read or search the XlsxWriter documentation to see if the issue you are encountering is already
explained.
There are many Examples in the distribution. Try to identify an example program that corresponds
to your query and adapt it to use as a bug report.
571
Creating Excel files with Python and XlsxWriter, Release 1.2.9
2. Include a sample program. This is probably the most important step. It is generally easier to
describe a problem in code than in written prose.
3. The sample program should be as small as possible to demonstrate the problem. Don’t copy
and paste large non-relevant sections of your program.
A sample bug report is shown below. This format helps to analyze and respond to the bug report
more quickly.
Issue with SOMETHING
I am using XlsxWriter to do SOMETHING but it appears to do SOMETHING ELSE.
I am using Python version X.Y.Z and XlsxWriter x.y.z.
Here is some code that demonstrates the problem:
import xlsxwriter
workbook = xlsxwriter.Workbook('hello.xlsx')
worksheet = workbook.add_worksheet()
workbook.close()
See also how How to create a Minimal, Complete, and Verifiable example from StackOverflow.
THIRTYEIGHT
No.
XlsxWriter is designed only as a file writer. It cannot read or modify an existing Excel file.
Due to wide range of possible formulas and interdependencies between them XlsxWriter doesn’t,
and realistically cannot, calculate the result of a formula when it is written to an XLSX file. Instead,
it stores the value 0 as the formula result. It then sets a global flag in the XLSX file to say that all
formulas and functions should be recalculated when the file is opened.
This is the method recommended in the Excel documentation and in general it works fine with
spreadsheet applications. However, applications that don’t have a facility to calculate formulas,
such as Excel Viewer, or several mobile applications, will only display the 0 results.
If required, it is also possible to specify the calculated result of the formula using the optional
value parameter in write_formula():
worksheet.write_formula('A1', '=2+2', num_format, 4)
Currently no. However, it is a planned features to allow cell formats and data to be written sepa-
rately.
573
Creating Excel files with Python and XlsxWriter, Release 1.2.9
All supported features are documented. Future features are on the Roadmap.
Unfortunately, there is no way to specify “AutoFit” for a column in the Excel file format. This feature
is only available at runtime from within Excel. It is possible to simulate “AutoFit” in your application
by tracking the maximum width of the data in the column as your write it and then adjusting the
column width at the end.
Although it is possible to password protect a worksheet using the Worksheet protect() method
it isn’t possible to password protect the entire workbook/file using XlsxWriter.
The reason for this is that a protected/encrypted xlsx file is in a different format from an ordinary
xlsx file. This would require a lot of additional work, and testing, and isn’t something that is on the
XlsxWriter roadmap.
However, it is possible to password protect an XlsxWriter generated file using a third party open
source tool called msoffice-crypt. This works for macOS, Linux and Windows:
msoffice-crypt.exe -e -p password clear.xlsx encrypted.xlsx
THIRTYNINE
CHANGES IN XLSXWRITER
This section shows changes and bug fixes in the XlsxWriter module.
Deprecation Notice: Python 2.7 reached the end of its life on January 1st, 2020 and is no longer
being supported in the community. XlsxWriter support for Python 2.7 will end after the first release
in 2021 (probably in January 2021). No new features or fixes for Python 2.7 will be added to
XlsxWriter after that date/release.
• Fix for issue where duplicate images with hyperlinks weren’t handled correctly. Issue #686.
• Removed ReservedWorksheetName exception which was used with the reserved work-
sheet name “History” since this name is allowed in some Excel variants. Issue #688.
• Fix for worksheet objects (charts, images and textboxes) that are inserted with an offset that
starts in a hidden cell. Issue #676.
• Fix to allow handling of NoneType in add_write_handler(). Issue #677.
• Fix for duplicate images being copied to an XlsxWriter file. Excel uses an optimization where
it only stores one copy of a repeated/duplicate image in a workbook. XlsxWriter didn’t do
this which meant that the file size would increase when then was a large number of repeated
images. This release fixes that issue and replicates Excel’s behavior. Issue #615.
• Added documentation on Number Format Categories and Number Formats in different lo-
cales.
• Added note to protect() about how it is possible to encrypt an XlsxWriter file using a third
party, cross platform, open source tool called msoffice-crypt.
575
Creating Excel files with Python and XlsxWriter, Release 1.2.9
• Added option to remove style from worksheet tables. Feature request #670.
• Added option to add hyperlinks to textboxes. See Textbox Hyperlink . Feature request #419.
• Added option to link textbox text from a cell. See Textbox Textlink . Feature request #516.
• Added option to rotate text in a textbox. See Textbox formatting: Text Rotation. Feature
request #638.
• Increased allowable worksheet url length from 255 to 2079 characters, as supported in more
recent versions of Excel. A lower or user defined limit can be set via the max_url_length
property in the Workbook() constructor.
• Fixed several issues with hyperlinks in worksheet images.
• Refactored exception handling around the workbook file close() method to allow excep-
tions to be caught and handled. See Example: Catch exception on closing. Also refactored
the code to clean up temp files in the event of an exception. Issues #471 and #647.
• Added the option to allow chart fonts to be rotated to 270 degrees to give a stacked orienta-
tion. See Chart Fonts. Issue #648.
• Another fix for issues where zipfile.py raises “ZIP does not support timestamps before 1980”
exception. Issue #651.
• Fixed issue where images that started in hidden rows/columns weren’t placed correctly in
the worksheet. Issue #613.
• Fixed the mime-type reported by system file(1). The mime-type reported by “file –mime-
type”/magic was incorrect for XlsxWriter files since it expected the [Content_types] to be
the first file in the zip container. Issue #614.
• This version removes support for end of life Pythons 2.5, 2.6, 3.1, 3.2 and 3.3. For older,
unsupported versions of Python use version 1.1.4 of XlsxWriter.
• Fix for issues where zipfile.py raises “ZIP does not support timestamps before 1980” excep-
tion. Issue #535.
• Fix for issue where in_memory files weren’t compressed. Issue #573.
• Fix write() so that it handles array formulas as documented. Issue #418.
• Fix for issue with special characters in worksheet table functions. Issue #442.
• Added warnings for input issues in write_rich_string() such as blank strings, double
formats or insufficient parameters. Issue #425.
• Added functionality to align chart category axis labels. See the label_align property of
the set_x_axis() method.
• Added worksheet hide_row_col_headers() method to turn off worksheet row and col-
umn headings. Issue #480.
• Added the set_tab_ratio() method to set the ratio between the worksheet tabs and the
horizontal slider. Issue #481.
• Fixed issue with icon conditional formats when the values were zero. Issue #565.
• Fix for issue with formulas quoted as strings in conditional formats, introduced in version
1.0.7. Issue #564.
• Added example of how to subclass the Workbook and Worksheet objects. See Example:
Example of subclassing the Workbook and Worksheet classes and Example: Advanced
example of subclassing.
• Added support for WMF and EMF image formats to the Worksheet add_image() method.
• Set the xlsx internal file member datetimes to 1980-01-01 00:00:00 like Excel so that apps
can produce a consistent binary file once the workbook set_properties() created date
is set. Pull request #495.
• Fix for jpeg images that reported unknown height/width due to unusual SOF markers. Issue
#506.
• Added support for blanks in list autofilter. Issue #505.
• Added Excel 2010 data bar features such as solid fills and control over the display of negative
values. See Working with Conditional Formatting and Example: Conditional Formatting.
Feature request #502.
• Fixed set_column() parameter names to match docs and other methods. Note, this is a
backward incompatible change. Issue #504.
• Fixed missing plotarea formatting in pie/doughnut charts.
• Fix for cases where the hyperlink style added in the previous release didn’t work. Feature
request #455.
• Changed default write_url() format to the Excel hyperlink style so that it changes when
the theme is changed and also so that it indicates that the link has been clicked. Feature
request #455.
• Added icon sets to conditional formatting. See Working with Conditional Formatting and
Example: Conditional Formatting. Feature request #387.
• Fixed issue where spurious deprecation warning was raised in -Werror mode. Issue #451.
• Fix for table with data but without a header. Issue #405.
• Add a warning when the number of series in a chart exceeds Excel’s limit of 255. Issue
#399.
• Fix for missing remove_timezone option in Chart class. PR from Thomas Arnhold #404.
• Added user definable removal of timezones in datetimes. See the Workbook() constructor
option remove_timezone and Timezone Handling in XlsxWriter . Issue #257.
• Fix duplicate header warning in add_table() when there is only one user defined header.
Issue #380.
• Fix for center_across property in add_format(). Issue #381.
• Added check to add_table() to prevent duplicate header names which leads to a corrupt
Excel file. Issue #362.
• Fix for insert_image() issue when handling images with zero dpi. Issue #356.
• Fix for issue when inserting read-only images on Windows. Issue #352.
• Added get_worksheet_by_name() method to allow the retrieval of a worksheet from a
workbook via its name.
• Fixed issue where internal file creation and modification dates were in the local timezone
instead of UTC.
• Fix for external: urls where the target/anchor contains spaces. Issue #350.
• Added additional documentation on Working with Python Pandas and XlsxWriter and Pan-
das with XlsxWriter Examples.
• Added fix for set_center_across() format method.
• Fix for write_url() exception when the URL contains two # location/anchors. Note, URLs
like this aren’t strictly valid and cannot be entered manually in Excel. Issue #330.
• Added transparency option to solid fill colors in chart areas (Chart formatting: Solid Fill).
Feature request #298.
• Added chart pattern fills, see Chart formatting: Pattern Fill and Example: Chart with Pattern
Fills. Feature request #268.
• Add checks for valid and non-duplicate worksheet table names. Issue #319.
• Added support for table header formatting and a fix for wrapped lines in the header. Feature
request #287.
• Allow hyperlinks longer than 255 characters when the link and anchor are each less than or
equal to 255 characters.
• Added hyperlink_base document property. Feature request #306.
• Added option to allow data validation input messages with the ‘any’ validate parameter.
• Fixed url encoding of links to external files and directories. Issue #278.
• Added documentation on Working with Python Pandas and XlsxWriter and Pandas with
XlsxWriter Examples.
• Added support for with context manager. Pull request #239.
• Added support for textboxes in worksheets. See insert_textbox() and Working with
Textboxes for more details. Feature request #107.
• Added gradient fills to chart objects such as the plot area of columns. See Chart formatting:
Gradient Fill and Example: Chart with Gradient Fills. Feature request #228.
• Added support for display units in chart axes. See set_x_axis(). Feature request #185.
• Added nan_inf_to_errors Workbook() constructor option to allow mapping of Python
nan/inf value to Excel error formulas in write() and write_number(). Feature request
#150.
• Added support for clustered category charts. See Example: Clustered Chart for details.
Feature request #180.
• Refactored the The Format Class and formatting documentation.
• Added option to combine two different chart types. See the Combined Charts section and
Example: Combined Chart and Example: Pareto Chart for more details. Feature request
#72.
• Added option to add function value in worksheet add_table(). Feature request #216.
• Fix for A1 row/col numbers below lower bound. Issue #212.
• Fix for incorrect shebang line in vba_extract.py packaged in wheel. Issue #211.
• Added docs and example for diagonal cell border. See Example: Diagonal borders in cells.
• Fix for issue where fonts applied to data labels raised exception. Issue #179.
• Added option to allow explicit text axis types for charts, similar to date axes. Feature request
#178.
• Fix for issue where the bar/column chart gap and overlap weren’t applied to the secondary
axis. Issue #177.
• Added support for adding VBA macros to workbooks. See Working with VBA Macros. Fea-
ture request #126.
• Added chart axis line and fill properties. Feature request #88.
• Added chart specific handling of data label positions since not all positions are available for
all chart types. Issue #170.
• Added number formatting (issue #130), font handling, separator and legend key for data
labels. See Chart series option: Data Labels
• Fix for non-quoted worksheet names containing spaces and non-alphanumeric characters.
Issue #167.
• Added option to add images to headers and footers. See Example: Adding Headers and
Footers to Worksheets. Feature request #133.
• Fixed issue where non 96dpi images weren’t scaled properly in Excel. Issue #164.
• Added option to not scale header/footer with page. See set_header(). Feature request
#134.
• Made the exception handling in write() clearer for unsupported types so that it raises a
more accurate TypeError instead of a ValueError. Issue #153.
• Added support for insert_image() images from byte streams to allow images from URLs
and other sources. Feature request #118.
• Added write_datetime() support for datetime.timedelta. Feature request #128.
• Fix for spurious exception message when close() isn’t used. Issue #131.
• Fix for formula string values that look like numbers. Issue #122.
• Clarify print_area() documentation for complete row/column ranges. Issue #139.
• Fix for unicode strings in data validation lists. Issue #135.
• Added image positioning option to insert_image() to control how images are moved in
relation to surrounding cells. Feature request #117.
• Fix for chart error_bar exceptions. Issue #115.
• Added clearer reporting of nested exceptions in write() methods. Issue #108.
• Added support for inside_base data label position in charts.
• Added checks and warnings for data validation limits. Issue #89.
• Added option to add hyperlinks to images. Thanks to Paul Tax.
• Added Python 3 Http server example. Thanks to Krystian Rosinski.
• Added set_calc_mode() method to control automatic calculation of formulas when work-
sheet is opened. Thanks to Chris Tompkinson.
• Added use_zip64() method to allow ZIP64 extensions when writing very large files.
• Fix to handle ‘0’ and other number like strings as number formats. Issue #103.
• Fix for missing images in in_memory mode. Issue #102.
• Added date axis handling to charts. See Example: Date Axis Chart. Feature request #73.
• Added support for non-contiguous chart ranges. Feature request #44.
• Fix for low byte and control characters in strings. Issue #86.
• Fix for chart titles with exclamation mark. Issue #83.
• Fix to remove duplicate set_column() entries. Issue #82.
• Added interval unit option for category axes. Feature request #69.
• Fix for axis name font rotation.
• Fix for several minor issues with Pie chart legends.
• Added chart object positioning and sizing to allow positioning of plotarea, legend, title and
axis names. Feature request #66.
• Added set_title() none option to turn off automatic titles.
• Improved define_name() name validation.
• Fix to prevent modification of user parameters in conditional_format().
• Fix for comments overlying columns with non-default width. Issue #45.
• Fix for charts and images that cross rows and columns that are hidden or formatted but
which don’t have size changes. Issue #42 reported by Kristian Stobbe.
• Added more generic support for JPEG files. Issue #40 reported by Simon Breuss.
• Fix for harmless Python 3 installation warning. Issue #41 reported by James Reeves.
• Added fix for minor issue with insert_image() for images that extend over several cells.
• Added fix to ensure formula calculation on load regardless of Excel version.
• Added handling for Decimal(), Fraction() and other float types to the write() function.
• Added Python 2.5 and Jython support. Thanks to Jonas Diemer for the patch.
• Added write_boolean() function to write Excel boolean values. Feature request #37.
Also added explicit handling of Python bool values to the write() function.
• Changed Workbook() constructor option strings_to_numbers default option to False
so that there is no implicit conversion of numbers in strings to numbers. The previous be-
havior can be obtained by setting the constructor option to True. Note This is a backward
incompatibility.
• Simplified import based on a suggestion from John Yeung. Feature request #26.
• Fix for NAN/INF converted to invalid numbers in write(). Issue #30.
• Added Workbook() constructor option strings_to_numbers to override default conver-
sion of number strings to numbers in write().
• Added Workbook() constructor option default_date_format to allow a default date
format string to be set. Feature request #5.
• Reverted back to using codecs for file encoding (versions <= 0.3.1) to avoid numerous UTF-8
issues in Python2/3.
• Added chart support. See the The Chart Class, Working with Charts and Chart Examples.
• Added worksheet sparklines. See Working with Sparklines, Example: Sparklines (Simple)
and Example: Sparklines (Advanced)
• Added worksheet tables. See Working with Worksheet Tables and Example: Worksheet
Tables.
• Tested with the new Python stable releases 2.7.4 and 3.3.1. All tests now pass in the follow-
ing versions:
– Python 2.6
– Python 2.7.2
– Python 2.7.3
– Python 2.7.4
– Python 3.1
– Python 3.2
– Python 3.3.0
– Python 3.3.1
• There are now over 700 unit tests including more than 170 tests that compare against the
output of Excel.
• Added worksheet outlines and grouping. See Working with Outlines and Grouping.
• Fixed bug that was killing performance for medium sized files. The module is now 10x faster
than previous versions. Reported by John Yeung.
• Added worksheet data validation options. See the data_validation() method, Working
with Data Validation and Example: Data Validation and Drop Down Lists.
• There are now over 600 unit tests including more than 130 tests that compare against the
output of Excel.
• Added Python 2.6 support. All tests now pass in the following versions:
– Python 2.6
– Python 2.7.2
– Python 2.7.3
– Python 3.1
– Python 3.2
– Python 3.3.0
• Added the option to write cell comments to a worksheet. See write_comment() and
Working with Cell Comments.
• Added insert_image() worksheet method to support inserting PNG and JPEG images
into a worksheet. See also the example program Example: Inserting images into a work-
sheet.
• There are now over 500 unit tests including more than 100 tests that compare against the
output of Excel.
• Added the write_rich_string() worksheet method to allow writing of text with multiple
formats to a cell. Also added example program: Example: Writing “Rich” strings with multiple
formats.
• Added the hide() worksheet method to hide worksheets.
• Added the set_first_sheet() worksheet method.
• Added the protect() worksheet method to allow protection of cells from editing. Also
added example program: Example: Enabling Cell protection in Worksheets.
• Added the define_name() method to create defined names and ranges in a workbook or
worksheet.
• Added the worksheets() method as an accessor for the worksheets in a workbook.
• Added final page setup methods to complete the page setup section.
– print_area()
– fit_to_pages()
– set_start_page()
– set_print_scale()
– set_h_pagebreaks()
– set_v_pagebreaks()
• Added Python 3 support with help from John Evans. Tested with:
– Python-2.7.2
– Python-2.7.3
– Python-3.2
– Python-3.3.0
• Added page setup methods.
– center_horizontally()
– center_vertically()
– set_header()
– set_footer()
– hide_gridlines()
FORTY
AUTHOR
If you have questions about XlsxWriter here are some ways to deal with them:
• Bug Reports:
See the Reporting Bugs section of the docs.
• Feature Requests:
Open a Feature Request issue on Github issues.
• Pull Requests:
See the Contributing Guide. Note, all Pull Requests must start with an Issue Tracker.
• General Questions:
General questions about how to use the module should be asked on StackOverflow. Add
the xlsxwriter tag to the question.
Questions on StackOverflow have the advantage of (usually) getting several answers and it
also leaves a searchable question for someone else.
• Email:
If none of the above apply you can contact me at [email protected].
I write and maintain a series of open source libraries for creating Excel files. The most com-
monly used are XlsxWriter in Python, Libxlsxwriter in C and Excel::Writer::XLSX and Spread-
sheet::WriteExcel in Perl.
599
Creating Excel files with Python and XlsxWriter, Release 1.2.9
My aim is to write well documented and well tested code that does what the user needs and
doesn’t get in their way. You can help make this continue, or show your appreciation for work to
date, by becoming a GitHub Sponsor.
Or make a one-off donation via PayPal.
FORTYONE
LICENSE
601