You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have encountered this issue numerous times; if you try to import a range that extends beyond row 99,999 (i.e. more than 100,000 rows) then an error is returned. E.g.:
foo <- read_excel("Sample spreadsheet.xlsx", range = "B2:C99999") #works perfectly
foo <- read_excel("Sample spreadsheet.xlsx", range = "B2:C100000") #returns the below error
Error: Cell references aren't uniformly A1 or R1C1 format:
B2:C100000
In addition: Warning message:
Cell reference follows neither the A1 nor R1C1 format. Example:
C100000
NAs generated.
The text was updated successfully, but these errors were encountered:
I have encountered this issue numerous times; if you try to import a range that extends beyond row 99,999 (i.e. more than 100,000 rows) then an error is returned. E.g.:
foo <- read_excel("Sample spreadsheet.xlsx", range = "B2:C99999") #works perfectly
foo <- read_excel("Sample spreadsheet.xlsx", range = "B2:C100000") #returns the below error
Error: Cell references aren't uniformly A1 or R1C1 format:
B2:C100000
In addition: Warning message:
Cell reference follows neither the A1 nor R1C1 format. Example:
C100000
NAs generated.
The text was updated successfully, but these errors were encountered: