简体   繁体   中英

How can I create multiple autofilter using xlsxwriter python package

when I write

workbook = xlsxwriter.Workbook( 'text.xlsx' )
worksheet = workbook.add_worksheet()
worksheet.autofilter( A1:A10 )
worksheet.autofilter( B1:B10 ) <- only these apply

the second autofilter cancel the first one

How can I create multiple autofilter using xlsxwriter

It isn't possible to create more than one autofilter per worksheet in Excel. Therefore it isn't possible to do it with XlsxWriter. Only the last autofilter written is applied.

In this particular case the filter ranges are next to each other so they could be combined to make one range, like this:

worksheet.autofilter('A1:B10')

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM