I'd like to write_xlsx
some data to excel sheets in an existing workbook. However, instead of adding sheets, write_xlsx
overwrites the entire excel workbook with the new sheet(s). I used to be able to say append = TRUE
, but that option seems to have vanished. Is there a way to simply append a few new sheets to an existing notebook?
write_xlsx(mydata, "mydata.xlsx")