There are 2 excel files. Each excel file has different sheets. Lets say, there are 2 excel files in my working directory. File1 and File2. File1 has 4 sheets and File2 has 5 sheets. All the sheet names have different names.
Example: File1(Price, Planning, contract, delivery) File2(CND, Discount, Installation, Price, Affidavit)
Now i need to extract the above data in R. I Need to have finally 2 files in R with object name coming as File names and also Sheet name getting reflected in the data.
So for example. My final R files should be like
1) "File1" that has all the data(from all the 5 sheets) from Excel File1 2) "File2" that has all the data(from all the 4 sheets) from Excel File2
Can we have something like this?