-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specify range for xlsx_cells() #25
Comments
Hi, thanks for the suggestion. If you're thinking of something like readxl's Presumably you've already tried reading one sheet at a time with the |
Yes I have. My problem is that the Workbook is 67 MB in size (yes yikes!). Calling an individual sheet still causes |
Actually I've found that the person who made these excel files dragged the formatting down to the last possible row over a bunch of columns. So my actual issue is that for each sheet In my particular case I only need the first three rows or so. |
I think a first step is to optionally omit blank cells. When readxl implemented range import it was complicated, and I want to take care to do it as similarly as possible. |
That would be a nice solution for my problem!
…On Fri, Apr 27, 2018 at 6:33 PM, Duncan Garmonsway ***@***.*** > wrote:
I think a first step is to optionally omit blank cells. When readxl
implemented range import it was complicated
<tidyverse/readxl#314>, and I want to take care
to do it as similarly as possible.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#25 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AFlfz4yiDAhOe65-c-vUWpxBVKKqN33Dks5ts5yggaJpZM4TcW1Y>
.
|
For files that are too big to import because whole columns have been formatted (but are mostly blank) #25
For files that are too big to import because whole columns have been formatted (but are mostly blank) #25
@SteveBronder blank cells can now be excluded on the master branch. xlsx_cells(x, include_blank_cells = FALSE) I'll keep this issue open for the |
Ty so much!! |
I have a large excel file that causes
xlsx_cells
to crash. It would be nice to say, "Only get this many rows and this many columns" when calling xlsx_cells.Could something be put in
xlsxsheet::parseSheetData
?The text was updated successfully, but these errors were encountered: