Skip to content
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

In Sheets API - BatchUpdateValues should be able to update multiple ranges at a time. #846

Open
simplyvijay opened this issue Apr 6, 2024 · 0 comments
Assignees

Comments

@simplyvijay
Copy link

Summary

The implementation of BatchUpdateValues for the 'sheets' can be modified to exhibit the capability to update multiple ranges in a single call.

Sample Name

Sheets Quickstart

Expected Behavior

Multiple ranges can be updated.
public static BatchUpdateValuesResponse batchUpdateValues(String spreadsheetId, String range, String valueInputOption, List<List<Object>> values)
The above can be replaced with the below signature for better understanding along with the implementation where multiple ranges can be updated in a single call.
public static BatchUpdateValuesResponse batchUpdateValues(String spreadsheetId, List<String> range, String valueInputOption, List<List<List<Object>>> values)

Actual Behavior

Single range is being updated.

Specifications

  • Java 11 / Window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants