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
The .sheet() function to extract data out of a XLSX sheet is limited to specifying a single, contiguous range. We've seen several cases so far where after extracting an initial range, we need to re-filter the result to skip empty rows that are interleaved with the data.
Currently we can do this in the notebook, but there might be a more flexible API to make this easier?
The text was updated successfully, but these errors were encountered:
Another case: keep reading rows but stop short of a totals or summary row. Although in that case, supporting "negative" rows or columns similar to slice could work. For example, "2:-10".
The .sheet() function to extract data out of a XLSX sheet is limited to specifying a single, contiguous range. We've seen several cases so far where after extracting an initial range, we need to re-filter the result to skip empty rows that are interleaved with the data.
Currently we can do this in the notebook, but there might be a more flexible API to make this easier?
The text was updated successfully, but these errors were encountered: