I have been reading up on how to read and combine multiple xlsx files into one R data frame and have come across some very good suggestions like, How to read multiple xlsx f
One more solution from this "rio" package :
library("rio") # import and rbind all worksheets DT <- import_list(SINGLE_XLSX_PATH, rbind = TRUE)
source : rdrr.io