Exporting R 3 dataframes to 3 different sheets in the same excel workbook

47 Views Asked by At

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?

2

There are 2 best solutions below

2
On

try this i'm sure this will help

datasets <- list("pr1" = df1,"pr2" = df2,"pr3" = df3)
write.xlsx(datasets,file = "Report.xlsx")
0
On

Also, using write_xlsx

library(writexl)
write_xlsx(list(pr1 = df1, pr2 = df2, pr3 = df3), path = "Report.xlsx")