Skip to content

Commit ef634b0

Browse files
author
Eric Koleda
committed
Update some values in pivot table snippets to reflect the new example.
1 parent dfdb635 commit ef634b0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

sheets/snippets/spreadsheet_snippets.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -198,12 +198,12 @@ def pivot_tables(self, spreadsheet_id):
198198
'sheetId': source_sheet_id,
199199
'startRowIndex': 0,
200200
'startColumnIndex': 0,
201-
'endRowIndex': 101,
202-
'endColumnIndex': 8
201+
'endRowIndex': 20,
202+
'endColumnIndex': 7
203203
},
204204
'rows': [
205205
{
206-
'sourceColumnOffset': 6,
206+
'sourceColumnOffset': 1,
207207
'showTotals': True,
208208
'sortOrder': 'ASCENDING',
209209

@@ -212,7 +212,7 @@ def pivot_tables(self, spreadsheet_id):
212212
],
213213
'columns': [
214214
{
215-
'sourceColumnOffset': 3,
215+
'sourceColumnOffset': 4,
216216
'sortOrder': 'ASCENDING',
217217
'showTotals': True,
218218

@@ -221,7 +221,7 @@ def pivot_tables(self, spreadsheet_id):
221221
'values': [
222222
{
223223
'summarizeFunction': 'COUNTA',
224-
'sourceColumnOffset': 3
224+
'sourceColumnOffset': 4
225225
}
226226
],
227227
'valueLayout': 'HORIZONTAL'

0 commit comments

Comments
 (0)