Dear all,
When trying to read in an xlsx excel file, I stumble upon a problem. Only the first 50 columns have a header and are imported, the others not. I tried too remove the columns around the 50th column to hope this would solve it, but no luck with this. Any idea how to fix this?
my code
library(readxl)
Book1_1 <- read_xlsx("~/Boma - Josse/CM/0. Rusthuizen/one zero/Book1.1.xlsm",
sheet = "Sheet1")
View(Book1_1)
The problem is very similar to another topic, I have the same problem as there probably.