I have sheets in a Workbook and then n number of Workbooks. These Workbooks are in a folder and I need to perform operations on sheets separately as data been incoherent.
I'm using
excelFiles <- list.files(path = path, pattern = '.*\\.xlsx', full.names = TRUE)
data_list <- import_list(excelFiles)
But this code makes a list of 'n' number of Workbooks and opens the 1st sheet on using data_list[[1]] and data_list[1]
What I need is sheets as df to perform functions and logic to go through to get them from folders.
Edit: rio
is used for import_list
.