I am trying to over-write specific tabs in an excel file (leaving the rest intact). I am trying to copy synatx from the documentation but I get an error.
with ExcelWriter('C:\\Users\Tiki\Desktop\work\VFT Technicals\Production2\dashboard_v2.xlsx') as writer:
output_rsi.to_excel(writer,sheet_name='rsi')
This returns the error:
NameError: name 'ExcelWriter' is not defined
Hoping for some advice, I am very much a beginner at coding.
Thanks in advance.