I have 4 separate Excel spreadsheets, and I would like to unify them, that is, leave them in just one. It is possible? As it is, I'm doing it like this:
library(readxl)
x<-read_excel('C:/Users/Jose/Desktop/Calculation 1.xlsx',sheet = "Calculation")
y<-read_excel('C:/Users/Jose/Desktop/Calculation 2.xlsx',sheet = "Test")
z<-read_excel('C:/Users/Jose/Desktop/Calculation 3.xlsx',sheet = "Part")
w<-read_excel('C:/Users/Jose/Desktop/Calculation 4.xlsx',sheet = "Softwares")
And I would like to transform it into just one spreadsheet, that way it would be 4 tabs, Calculation, Test, Part and Softwares.