Lets say I have two excel workbooks (e.g. A.xlsx and B.xlsx) that each contain multiple worksheets (e.g. "a1" and "a2" in A.xlsx; "b1", "b2", and "b3" in B.xlsx). Note that these worksheets all have their own conditional formatting, filtering, zoom, and other viewing options.
Given this setup, is it possible to generate a combined workbook via. R (e.g. C.xlsx) featuring the 5 worksheets from A.xlsx and B.xlsx (e.g. "a1", "a2", "b1", "b2", and "b3" in C.xlsx) that furthermore retains all of the original conditional formatting, filtering, zoom, and other viewing options? Thank you for your help!
We could read both the datasets together in
map2
. Get the sheet names from 'A.xlsx' and 'B.xlsx' data. Create a named vector of filepath with sheet names, loop over the vector withimap
, read the sheets withread_excel
, bind those together after creating a column for identification of sheetname, and combine thelist
output fromimap
to a singlelist
withimap