I am writing some data into an Excel file, but I don’t know how to adjust the code in order to be able to control which sheet I am writing into:
from openpyxl import load_workbook
wb = load_workbook(filename)
active_ws = wb.active
Instead of wb.active
, how can I say something like Sheets('Data')
(this is how the VBA syntax would look like...)?