I need to work with data which is stored in Excel workbooks of sometimes up to 50 sheets each, and would like to read them in all at once (or read, say, sheets 3:47 in at once). I've read in other discussions that XLConnect can do this. However, XLConnect won't load on my computer because rJava won't load. The most likely reason for this is (I think, after having researched the issue a bit and found it's quite common) that my version of Java is 32 bit, and my version of R (3.3.3) is 64 bit. However, I can't install a different version of Java on my work computer myself, and getting it done through our IT systems will take a while.
Therefore, I was wondering if anyone knows of a way to read in multiple Excel sheets at once using openxlsx (or any package that doesn't require rJava)? I've made a few attempts at writing a loop but that didn't work, when it didn't throw out an error it only read in one of the sheets.
EDIT: I've also found a method using a package called xlsReadWrite, but that package is not available for newer versions of R and has in fact been removed from the CRAN repository.