11

In xlswriter, once a format is defined, how can you apply it to a range and not to the whole column or the whole row?

for example:

perc_fmt = workbook.add_format({'num_format': '0.00%','align': 'center'})
worksheet.set_column('B:B', 10.00, perc_fmt)

this gets applied it to the whole "B" column, but how can this "perc_fmt" applied to a range, for example, if I do:

range2 = "B2:C15"
worksheet2.write(range2, perc_fmt)

it says:

TypeError: Unsupported type <class 'xlsxwriter.format.Format'> in write()
davejagoda
  • 2,420
  • 1
  • 20
  • 27
Gabriel
  • 3,737
  • 11
  • 30
  • 48

4 Answers4

14

Actually I found a workaround that avoids doing the loop. You just need to use the conditional formatting (that takes a range as an input) and just format all cases. For example:

worksheet2.conditional_format(color_range2, {'type': 'cell',
                                     'criteria': '>=',
                                     'value': 0, 'format': perc_fmt})
worksheet2.conditional_format(color_range2, {'type': 'cell',
                                     'criteria': '<',
                                     'value': 0, 'format': perc_fmt})  
Gabriel
  • 3,737
  • 11
  • 30
  • 48
  • Could you explain why you used conditional_format twice? It works perfectly fine if I use only the first line. Is this an either or? Thanks for your solution! – Anna M. Oct 09 '18 at 11:48
  • You probably don't have negative values, which the second conditional format would cover – Mike Feb 12 '19 at 03:10
2

In xlswriter, once a format is defined, how can you apply it to a range and not to the whole column or the whole row?

There isn't a helper function to do this. You will need to loop over the range and apply the data and formatting to each cell.

jmcnamara
  • 38,196
  • 6
  • 90
  • 108
2

It took me quite a time to find this answer, so thank you. I would offer up the additional solution with just one block when your range includes blanks and text fields. This turns the range A2:N5 to my format of peach coloring I defined earlier in my code. Of course you have to make the number more negative if you actually have large negative numbers in your dataset.

    worksheet.conditional_format('A2:N5', {'type': 'cell',
                                           'criteria' : '>', 
                                           'value' : -99999999999,
                                           'format' : peach_format})

I originally tried 'criteria' : '<>', 'value' : 0 but that did not catch the blank cells. If you use the < 99999999999 it would code the text fields as False and would not code them.

Scott
  • 31
  • 3
0

you can use:

{
    'type': 'cell',
    'criteria': 'between',
    'minimum': -10000,
    'maximum': 10000,
    'format': perc_fmt
}

This will save you one line of code

masud_moni
  • 1,121
  • 16
  • 33