xlwings: Referencing Multiple Cells

xlwings code:

#Referencing Multiple Cells

import xlwings as xw    #Import the xlwings package

app=xw.App()
bk=app.books.active    #Get the active workbook
sht=bk.sheets.active    #Get the active worksheet

#xlwings
sht.range('B2, C5, D7').select()
#sht['B2, C5, D7'].select()

#xlwings API
#sht.api.Range('B2, C5, D7').Select()

bk.close()
app.kill()


category : xlwings: Object Model

Leave a Reply

Your email address will not be published. Required fields are marked *

Zoomed Image