I am attempting to export 3 dataframes to 3 different sheets in the same excel workbook, this is the code I used:
write.xlsx(x = df1,file = "Report.xlsx",sheetName = "pr1")
write.xlsx(x = df2,file = "Report.xlsx",sheetName = "pr2", append = TRUE)
write.xlsx(x = df3,file = "Report.xlsx",sheetName = "pr3", append = TRUE)
When I run this, I only see sheet pr3 Why is this happening?
try this i'm sure this will help