-4

I have multiple excel file each containing different number of sheet. I want to merge all the sheet of all files except the 1st sheet of each file into a new data frame.

Subhashree
  • 108
  • 1
  • 1
  • 7
  • What have you tried so far? Could you provide a minimum reproducible example? Check out this post for some guidance: https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example – JanLauGe Jul 14 '17 at 09:45

1 Answers1

0

If you want to use rbind the columns must have the same name. Ignoring the 1st sheet should be done when calling the frame [-1], a little bit more information would help.

matlabalt
  • 50
  • 6