1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
|
.. SPDX-License-Identifier: BSD-2-Clause
Copyright 2013-2023, John McNamara, jmcnamara@cpan.org
.. _format:
The Format Class
================
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.
.. image:: _images/formats_intro.png
Creating and using a Format object
----------------------------------
Cell formatting is defined through a Format object. Format objects are created
by calling the workbook :func:`add_format` method as follows::
cell_format1 = workbook.add_format() # Set properties later.
cell_format2 = workbook.add_format(props) # Set properties at creation.
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')
By comparison the properties can be set by passing a dictionary of properties
to the :func:`add_format` constructor::
cell_format = workbook.add_format({'bold': True, '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 :func:`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 :func:`set_row` and
:func:`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)
Format Defaults
---------------
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()
cell_format.set_bold() # Turns bold on.
cell_format.set_bold(True) # Also turns bold on.
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.
Modifying Formats
-----------------
Each unique cell format in an XlsxWriter spreadsheet must have a corresponding
Format object. It isn't possible to use a Format with a :func:`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.
.. _num_format_categories:
Number Format Categories
------------------------
The :func:`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()
currency_format = workbook.add_format({'num_format': '$#,##0.00'})
worksheet.write('A1', 1234.56, currency_format)
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:
.. image:: _images/currency_format1.png
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:
.. image:: _images/currency_format2.png
Then, while still in the dialog, change to Custom. The format displayed is the
format used by Excel.
.. image:: _images/currency_format3.png
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()
currency_format = workbook.add_format({'num_format': '[$$-409]#,##0.00'})
worksheet.write('A1', 1234.56, currency_format)
workbook.close()
Here is the output:
.. image:: _images/currency_format4.png
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.
.. _num_format_locale:
Number Formats in different locales
-----------------------------------
As shown in the previous section the :func:`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 "grouping/thousands" separator and a "decimal" point::
import xlsxwriter
workbook = xlsxwriter.Workbook('number_format.xlsx')
worksheet = workbook.add_worksheet()
number_format = workbook.add_format({'num_format': '#,##0.00'})
worksheet.write('A1', 1234.56, number_format)
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:
.. image:: _images/currency_format5.png
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:
.. image:: _images/currency_format6.png
And here is the same file in a Russian locale. Note the use of a space as the
"grouping/thousands" separator:
.. image:: _images/currency_format7.png
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.
Format methods and Format properties
------------------------------------
The following table shows the Excel format categories, the formatting
properties that can be applied and the equivalent object method:
+------------+------------------+----------------------+------------------------------+
| Category | Description | Property | Method Name |
+============+==================+======================+==============================+
| Font | Font type | ``'font_name'`` | :func:`set_font_name()` |
+------------+------------------+----------------------+------------------------------+
| | Font size | ``'font_size'`` | :func:`set_font_size()` |
+------------+------------------+----------------------+------------------------------+
| | Font color | ``'font_color'`` | :func:`set_font_color()` |
+------------+------------------+----------------------+------------------------------+
| | Bold | ``'bold'`` | :func:`set_bold()` |
+------------+------------------+----------------------+------------------------------+
| | Italic | ``'italic'`` | :func:`set_italic()` |
+------------+------------------+----------------------+------------------------------+
| | Underline | ``'underline'`` | :func:`set_underline()` |
+------------+------------------+----------------------+------------------------------+
| | Strikeout | ``'font_strikeout'`` | :func:`set_font_strikeout()` |
+------------+------------------+----------------------+------------------------------+
| | Super/Subscript | ``'font_script'`` | :func:`set_font_script()` |
+------------+------------------+----------------------+------------------------------+
| Number | Numeric format | ``'num_format'`` | :func:`set_num_format()` |
+------------+------------------+----------------------+------------------------------+
| Protection | Lock cells | ``'locked'`` | :func:`set_locked()` |
+------------+------------------+----------------------+------------------------------+
| | Hide formulas | ``'hidden'`` | :func:`set_hidden()` |
+------------+------------------+----------------------+------------------------------+
| Alignment | Horizontal align | ``'align'`` | :func:`set_align()` |
+------------+------------------+----------------------+------------------------------+
| | Vertical align | ``'valign'`` | :func:`set_align()` |
+------------+------------------+----------------------+------------------------------+
| | Rotation | ``'rotation'`` | :func:`set_rotation()` |
+------------+------------------+----------------------+------------------------------+
| | Text wrap | ``'text_wrap'`` | :func:`set_text_wrap()` |
+------------+------------------+----------------------+------------------------------+
| | Reading order | ``'reading_order'`` | :func:`set_reading_order()` |
+------------+------------------+----------------------+------------------------------+
| | Justify last | ``'text_justlast'`` | :func:`set_text_justlast()` |
+------------+------------------+----------------------+------------------------------+
| | Center across | ``'center_across'`` | :func:`set_center_across()` |
+------------+------------------+----------------------+------------------------------+
| | Indentation | ``'indent'`` | :func:`set_indent()` |
+------------+------------------+----------------------+------------------------------+
| | Shrink to fit | ``'shrink'`` | :func:`set_shrink()` |
+------------+------------------+----------------------+------------------------------+
| Pattern | Cell pattern | ``'pattern'`` | :func:`set_pattern()` |
+------------+------------------+----------------------+------------------------------+
| | Background color | ``'bg_color'`` | :func:`set_bg_color()` |
+------------+------------------+----------------------+------------------------------+
| | Foreground color | ``'fg_color'`` | :func:`set_fg_color()` |
+------------+------------------+----------------------+------------------------------+
| Border | Cell border | ``'border'`` | :func:`set_border()` |
+------------+------------------+----------------------+------------------------------+
| | Bottom border | ``'bottom'`` | :func:`set_bottom()` |
+------------+------------------+----------------------+------------------------------+
| | Top border | ``'top'`` | :func:`set_top()` |
+------------+------------------+----------------------+------------------------------+
| | Left border | ``'left'`` | :func:`set_left()` |
+------------+------------------+----------------------+------------------------------+
| | Right border | ``'right'`` | :func:`set_right()` |
+------------+------------------+----------------------+------------------------------+
| | Border color | ``'border_color'`` | :func:`set_border_color()` |
+------------+------------------+----------------------+------------------------------+
| | Bottom color | ``'bottom_color'`` | :func:`set_bottom_color()` |
+------------+------------------+----------------------+------------------------------+
| | Top color | ``'top_color'`` | :func:`set_top_color()` |
+------------+------------------+----------------------+------------------------------+
| | Left color | ``'left_color'`` | :func:`set_left_color()` |
+------------+------------------+----------------------+------------------------------+
| | Right color | ``'right_color'`` | :func:`set_right_color()` |
+------------+------------------+----------------------+------------------------------+
The format properties and methods are explained in the following sections.
format.set_font_name()
----------------------
.. py:function:: set_font_name(fontname)
Set the font used in the cell.
:param string fontname: Cell font.
Specify the font used used in the cell format::
cell_format.set_font_name('Times New Roman')
.. image:: _images/format_font_name.png
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'.
The default font for an unformatted cell in Excel 2007+ is 'Calibri'.
format.set_font_size()
----------------------
.. py:function:: set_font_size(size)
Set the size of the font used in the cell.
:param int size: The cell font size.
Set the font size of the cell format::
cell_format = workbook.add_format()
cell_format.set_font_size(30)
.. image:: _images/format_font_size.png
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
:func:`set_row` worksheet method.
format.set_font_color()
-----------------------
.. py:function:: set_font_color(color)
Set the color of the font used in the cell.
:param string color: The cell font color.
Set the font color::
cell_format = workbook.add_format()
cell_format.set_font_color('red')
worksheet.write(0, 0, 'Wheelbarrow', cell_format)
.. image:: _images/format_font_color.png
The color can be a Html style ``#RRGGBB`` string or a limited number of named
colors, see :ref:`colors`.
Note: The :func:`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 :func:`set_bg_color` and
:func:`set_pattern` methods.
format.set_bold()
-----------------
.. py:function:: set_bold()
Turn on bold for the format font.
Set the bold property of the font::
cell_format.set_bold()
.. image:: _images/format_font_bold.png
format.set_italic()
-------------------
.. py:function:: set_italic()
Turn on italic for the format font.
Set the italic property of the font::
cell_format.set_italic()
.. image:: _images/format_font_italic.png
format.set_underline()
----------------------
.. py:function:: set_underline()
Turn on underline for the format.
:param int style: Underline style.
Set the underline property of the format::
cell_format.set_underline()
.. image:: _images/format_font_underlined.png
The available underline styles are:
* 1 = Single underline (the default)
* 2 = Double underline
* 33 = Single accounting underline
* 34 = Double accounting underline
format.set_font_strikeout()
---------------------------
.. py:function:: set_font_strikeout()
Set the strikeout property of the font.
.. image:: _images/format_font_strikeout.png
format.set_font_script()
------------------------
.. py:function:: set_font_script()
Set the superscript/subscript property of the font.
The available options are:
* 1 = Superscript
* 2 = Subscript
.. image:: _images/format_font_script.png
This property is generally only useful when used in conjunction with
:func:`write_rich_string`.
format.set_num_format()
-----------------------
.. py:function:: set_num_format(format_string)
Set the number format for a cell.
:param string format_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()
cell_format1.set_num_format('d mmm yyyy') # Format string.
cell_format2.set_num_format(0x0F) # Format index.
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
cell_format07.set_num_format('d mmmm yyyy')
worksheet.write(7, 0, 36892.521, cell_format07) # -> 1 January 2001
cell_format08.set_num_format('dd/mm/yyyy hh:mm AM/PM')
worksheet.write(8, 0, 36892.521, cell_format08) # -> 01/01/2001 12:30 AM
cell_format09.set_num_format('0 "dollar and" .00 "cents"')
worksheet.write(9, 0, 1.87, cell_format09) # -> 1 dollar and .87 cents
# Conditional numerical formatting.
cell_format10.set_num_format('[Green]General;[Red]-General;General')
worksheet.write(10, 0, 123, cell_format10) # > 0 Green
worksheet.write(11, 0, -45, cell_format10) # < 0 Red
worksheet.write(12, 0, 0, cell_format10) # = 0 Default color
# Zip code.
cell_format11.set_num_format('00000')
worksheet.write(13, 0, 1209, cell_format11)
.. image:: _images/formats_num_str.png
The number system used for dates is described in
:ref:`working_with_dates_and_time`.
The color format should have one of the following values::
[Black] [Blue] [Cyan] [Green] [Magenta] [Red] [White] [Yellow]
For more information refer to the `Microsoft documentation on cell formats
<https://support.microsoft.com/en-us/office/create-a-custom-number-format-78f2a361-936b-4c03-8772-09fab54be7f4?ui=en-us&rs=en-us&ad=us>`_.
For information on how to get a number format to show up as one of the number
format categories such as Currency, Accounting, Date, Time, Percentage,
Fraction, Scientific or Text, see :ref:`num_format_categories`, above.
For backwards compatibility XlsxWriter also supports Excel's built-in formats
which are set via an index number, rather than a string::
cell_format.set_num_format(3) # Same as #,##0
The format indexes and the equivalent strings are shown in the following
table:
+-------+--------------------------------------------------------+
| Index | Format String |
+=======+========================================================+
| 0 | ``General`` |
+-------+--------------------------------------------------------+
| 1 | ``0`` |
+-------+--------------------------------------------------------+
| 2 | ``0.00`` |
+-------+--------------------------------------------------------+
| 3 | ``#,##0`` |
+-------+--------------------------------------------------------+
| 4 | ``#,##0.00`` |
+-------+--------------------------------------------------------+
| 5 | ``($#,##0_);($#,##0)`` |
+-------+--------------------------------------------------------+
| 6 | ``($#,##0_);[Red]($#,##0)`` |
+-------+--------------------------------------------------------+
| 7 | ``($#,##0.00_);($#,##0.00)`` |
+-------+--------------------------------------------------------+
| 8 | ``($#,##0.00_);[Red]($#,##0.00)`` |
+-------+--------------------------------------------------------+
| 9 | ``0%`` |
+-------+--------------------------------------------------------+
| 10 | ``0.00%`` |
+-------+--------------------------------------------------------+
| 11 | ``0.00E+00`` |
+-------+--------------------------------------------------------+
| 12 | ``# ?/?`` |
+-------+--------------------------------------------------------+
| 13 | ``# ??/??`` |
+-------+--------------------------------------------------------+
| 14 | ``m/d/yy`` |
+-------+--------------------------------------------------------+
| 15 | ``d-mmm-yy`` |
+-------+--------------------------------------------------------+
| 16 | ``d-mmm`` |
+-------+--------------------------------------------------------+
| 17 | ``mmm-yy`` |
+-------+--------------------------------------------------------+
| 18 | ``h:mm AM/PM`` |
+-------+--------------------------------------------------------+
| 19 | ``h:mm:ss AM/PM`` |
+-------+--------------------------------------------------------+
| 20 | ``h:mm`` |
+-------+--------------------------------------------------------+
| 21 | ``h:mm:ss`` |
+-------+--------------------------------------------------------+
| 22 | ``m/d/yy h:mm`` |
+-------+--------------------------------------------------------+
| ... | ... |
+-------+--------------------------------------------------------+
| 37 | ``(#,##0_);(#,##0)`` |
+-------+--------------------------------------------------------+
| 38 | ``(#,##0_);[Red](#,##0)`` |
+-------+--------------------------------------------------------+
| 39 | ``(#,##0.00_);(#,##0.00)`` |
+-------+--------------------------------------------------------+
| 40 | ``(#,##0.00_);[Red](#,##0.00)`` |
+-------+--------------------------------------------------------+
| 41 | ``_(* #,##0_);_(* (#,##0);_(* "-"_);_(@_)`` |
+-------+--------------------------------------------------------+
| 42 | ``_($* #,##0_);_($* (#,##0);_($* "-"_);_(@_)`` |
+-------+--------------------------------------------------------+
| 43 | ``_(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_)`` |
+-------+--------------------------------------------------------+
| 44 | ``_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)`` |
+-------+--------------------------------------------------------+
| 45 | ``mm:ss`` |
+-------+--------------------------------------------------------+
| 46 | ``[h]:mm:ss`` |
+-------+--------------------------------------------------------+
| 47 | ``mm:ss.0`` |
+-------+--------------------------------------------------------+
| 48 | ``##0.0E+0`` |
+-------+--------------------------------------------------------+
| 49 | ``@`` |
+-------+--------------------------------------------------------+
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
:ref:`num_format_categories`, above.
format.set_locked()
-------------------
.. py:function:: set_locked(state)
Set the cell locked state.
:param bool state: Turn cell locking on or off. Defaults to True.
This property can be used to prevent modification of a cell's contents.
Following Excel's convention, cell locking is turned on by default. However,
it only has an effect if the worksheet has been protected using the worksheet
:func:`protect` method::
locked = workbook.add_format()
locked.set_locked(True)
unlocked = workbook.add_format()
unlocked.set_locked(False)
# Enable worksheet protection
worksheet.protect()
# This cell cannot be edited.
worksheet.write('A1', '=1+2', locked)
# This cell can be edited.
worksheet.write('A2', '=1+2', unlocked)
format.set_hidden()
-------------------
.. py:function:: 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 :func:`protect` method::
hidden = workbook.add_format()
hidden.set_hidden()
# Enable worksheet protection
worksheet.protect()
# The formula in this cell isn't visible
worksheet.write('A1', '=1+2', hidden)
format.set_align()
------------------
.. py:function:: set_align(alignment)
Set the alignment for data in the cell.
:param string alignment: The vertical and or horizontal alignment direction.
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)
worksheet.write(0, 0, 'Some Text', cell_format)
.. image:: _images/format_font_align.png
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 :func:`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
:func:`set_text_wrap` method.
format.set_center_across()
--------------------------
.. py:function:: set_center_across()
Center text across adjacent cells.
Text can be aligned across two or more adjacent cells using the
:func:`set_center_across` method. This is an alias for the
``set_align('center_across')`` method call.
Only the leftmost cell should contain the text. The other cells in the range
should be blank but should include the formatting::
cell_format = workbook.add_format()
cell_format.set_center_across()
worksheet.write(1, 1, 'Center across selection', cell_format)
worksheet.write_blank(1, 2, '', cell_format)
For actual merged cells it is better to use the :func:`merge_range` worksheet
method.
format.set_text_wrap()
----------------------
.. py:function:: 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()
worksheet.write(0, 0, "Some long text to wrap in a cell", cell_format)
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)
.. image:: _images/format_font_text_wrap.png
Excel will adjust the height of the row to accommodate the wrapped text, as
shown in the image above. This can be useful but it can also have unwanted
side-effects:
* Objects such as images or charts that cross the automatically adjusted cells
will not be scaled correctly. See :ref:`object_position_auto_row_height`.
* You may not want the row height to change. In that case you should set the
row height to a non-default value such as 15.001.
format.set_rotation()
---------------------
.. py:function:: set_rotation(angle)
Set the rotation of the text in a cell.
:param int angle: 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)
worksheet.write(0, 0, 'This text is rotated', cell_format)
.. image:: _images/format_font_text_rotated.png
The angle 270 is also supported. This indicates text where the letters run from
top to bottom.
format.set_reading_order()
--------------------------
.. py:function:: set_reading_order(direction)
Set the reading order for the text in a cell.
:param int direction: Reading order direction.
Set the text reading direction. This is useful when creating Arabic, Hebrew or
other near or far eastern worksheets. It can be used in conjunction with the
Worksheet :func:`right_to_left` method to also change the direction of the
worksheet.
.. only:: html
::
format_left_to_right = workbook.add_format()
format_left_to_right.set_reading_order(1)
format_right_to_left = workbook.add_format()
format_right_to_left.set_reading_order(2)
worksheet.right_to_left()
worksheet.write('A1', u'نص عربي / English text') # Default direction.
worksheet.write('A2', u'نص عربي / English text', format_left_to_right)
worksheet.write('A3', u'نص عربي / English text', format_right_to_left)
.. image:: _images/right_to_left.png
format.set_indent()
-------------------
.. py:function:: set_indent(level)
Set the cell text indentation level.
:param int level: 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)
worksheet.write('A1', 'This text is indented 1 level', cell_format1)
worksheet.write('A2', 'This text is indented 2 levels', cell_format2)
.. image:: _images/text_indent.png
Indentation is a horizontal alignment property. It will override any other
horizontal properties but it can be used in conjunction with vertical
properties.
format.set_shrink()
-------------------
.. py:function:: 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()
worksheet.write(0, 0, 'Honey, I shrunk the text!', cell_format)
format.set_text_justlast()
--------------------------
.. py:function:: set_text_justlast()
Turn on the justify last text property.
Only applies to Far Eastern versions of Excel.
format.set_pattern()
--------------------
.. py:function:: set_pattern(index)
:param int index: 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.
format.set_bg_color()
---------------------
.. py:function:: set_bg_color(color)
Set the color of the background pattern in a cell.
:param string color: The cell font color.
The :func:`set_bg_color` method can be used to set the background color of a
pattern. Patterns are defined via the :func:`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()
cell_format.set_pattern(1) # This is optional when using a solid fill.
cell_format.set_bg_color('green')
worksheet.write('A1', 'Ray', cell_format)
.. image:: _images/formats_set_bg_color.png
The color can be a Html style ``#RRGGBB`` string or a limited number of named
colors, see :ref:`colors`.
format.set_fg_color()
---------------------
.. py:function:: set_fg_color(color)
Set the color of the foreground pattern in a cell.
:param string color: The cell font color.
The :func:`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 :ref:`colors`.
format.set_border()
-------------------
.. py:function:: set_border(style)
Set the cell border style.
:param int style: Border style index. Default is 1.
Individual border elements can be configured using the following methods with
the same parameters:
* :func:`set_bottom`
* :func:`set_top`
* :func:`set_left`
* :func:`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 :func:`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 | ``===========`` |
+-------+-----------------+-------+-----------------+
format.set_bottom()
-------------------
.. py:function:: set_bottom(style)
Set the cell bottom border style.
:param int style: Border style index. Default is 1.
Set the cell bottom border style. See :func:`set_border` for details on the
border styles.
format.set_top()
----------------
.. py:function:: set_top(style)
Set the cell top border style.
:param int style: Border style index. Default is 1.
Set the cell top border style. See :func:`set_border` for details on the
border styles.
format.set_left()
-----------------
.. py:function:: set_left(style)
Set the cell left border style.
:param int style: Border style index. Default is 1.
Set the cell left border style. See :func:`set_border` for details on the
border styles.
format.set_right()
------------------
.. py:function:: set_right(style)
Set the cell right border style.
:param int style: Border style index. Default is 1.
Set the cell right border style. See :func:`set_border` for details on the
border styles.
format.set_border_color()
-------------------------
.. py:function:: set_border_color(color)
Set the color of the cell border.
:param string color: The cell border color.
Individual border elements can be configured using the following methods with
the same parameters:
* :func:`set_bottom_color`
* :func:`set_top_color`
* :func:`set_left_color`
* :func:`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
:func:`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 :ref:`colors`.
format.set_bottom_color()
-------------------------
.. py:function:: set_bottom_color(color)
Set the color of the bottom cell border.
:param string color: The cell border color.
See :func:`set_border_color` for details on the border colors.
format.set_top_color()
----------------------
.. py:function:: set_top_color(color)
Set the color of the top cell border.
:param string color: The cell border color.
See :func:`set_border_color` for details on the border colors.
format.set_left_color()
-----------------------
.. py:function:: set_left_color(color)
Set the color of the left cell border.
:param string color: The cell border color.
See :func:`set_border_color` for details on the border colors.
format.set_right_color()
------------------------
.. py:function:: set_right_color(color)
Set the color of the right cell border.
:param string color: The cell border color.
See :func:`set_border_color` for details on the border colors.
format.set_diag_border()
------------------------
.. py:function:: set_diag_border(style)
Set the diagonal cell border style.
:param int style: Border style index. Default is 1.
Set the style for a diagonal border. The `style` is the same as those used in
:func:`set_border`.
See :ref:`ex_diagonal_border`.
.. image:: _images/diagonal_border.png
format.set_diag_type()
------------------------
.. py:function:: set_diag_type(style)
Set the diagonal cell border type.
:param int style: 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.
format.set_diag_color()
-----------------------
.. py:function:: set_diag_color(color)
Set the color of the diagonal cell border.
:param string color: The cell border color.
See :func:`set_border_color` for details on the border colors.
format.set_quote_prefix()
-------------------------
.. py:function:: set_quote_prefix()
Turn on quote prefix for the format.
Set the quote prefix property of a format to ensure a string is treated as a
string after editing. This is the same as prefixing the string with a single
quote in Excel. You don't need to add the quote to the string but you do need
to add the format.
|