I need to add new information to the xls worksheet, but it already has information that was previously entered. I need this data to be on the same sheet.
Is it possible to update a spreadsheet without overwriting data that already exists?
I'm using write.xls in the simplest possible way:
write.xlsx(obj, path, sheetName="Dados")
I tried to use append, but it always overwrites or creates the data on a different sheet. Is there another way to do this?