-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Feat(Source-File): Add Excel Reader Options For sheet_name / sheet_names #69774
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
base: master
Are you sure you want to change the base?
Feat(Source-File): Add Excel Reader Options For sheet_name / sheet_names #69774
Conversation
👋 Greetings, Airbyte Team Member!Here are some helpful tips and reminders for your convenience. Helpful Resources
PR Slash CommandsAirbyte Maintainers (that's you!) can execute the following slash commands on your PR:
|
|
|
||
| #### Excel-specific reader options | ||
|
|
||
| - `sheet_name`: Limit the sync to one or more worksheets inside the workbook. Accepts either a single sheet name (string), a zero-based sheet index (integer), or an array mixing names and indexes (for example, `{"sheet_name": ["Finance", 2]}`). When omitted, every sheet in the file is read sequentially and appended into the same destination table. If any requested sheet does not exist, setup will fail with a configuration error. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Google.Will] Avoid using 'will'.
|
|
Deploy preview for airbyte-docs ready! ✅ Preview Built with commit 803491e. |
What
Some users don't want to sync all sheets, which is the default behavior.
How
This feature adds Excel reader options that will allow users to specify reader options. Accepts either a single sheet name (string), a zero-based sheet index (integer), or an array mixing names and indexes (for example,
{"sheet_name": ["Finance", 2]}). When omitted, every sheet in the file is read sequentially.Review guide
User Impact
Can this PR be safely reverted and rolled back?