I have an excel spreadsheet with several sheets. The format is as below:
Date A B C D E F Referenc
With the readxl package using read_xlsx you can specify the range. Use read_xls or read_excel depending on file type.
readxl
read_xlsx
library(readxl) df <- read_xlsx(path = "filename.xlsx", sheet = "sheetname", range = cell_cols("A:G"))