zeehio/condformat

Render multiple sheets

Closed this issue · 2 comments

Current render2excel function only accepts a parameter for workbook name.

Can you add a parameter for sheetname as the current default of sheet1 is not accessible and therefore I am not able to loop through a series of tables that I need to export.

I haven't done extensive testing, but feel free to try it:

devtools::install_github("zeehio/condformat")

And then do something like:

library(condformat)
data(iris)
x <- condformat(iris)
condformat2excel(x, "an_excel_file", "sheet1")
condformat2excel(x, "an_excel_file", "sheet2")

I don't have much time to work on this right now, I hope this is useful 👍

This worked on my dataset! Much appreciated!