named-ranges

Is there a way to change the scope of a named range from workbook to worksheet using Python?

Is there a way to change the scope of a named range from workbook to worksheet using Python? Question: I created a named ranges on my Excel sheet using the function define_name() with pd.ExcelWriter(excel_broker, engine=’xlsxwriter’) as writer: # Get xlsxwriter objects workbook = writer.book header = workbook.add_format({‘bold’:True, ‘border’ : 1 }) format_float = workbook.add_format({‘num_format’: ‘# …

Total answers: 1