Hello, I want to copy data from an excel spreadsheet into r. But I don't want to copy all of the columns I want to miss one out.
data <- read_excel("Sample data.xlsx", range = "b3:e103")
^^ using 'range = ()' I can read the whole of my excel spreadsheet. However I want to read the data in columns B, C and E, Skipping the data in column D.