forked from googleworkspace/apps-script-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsheets.gs
172 lines (164 loc) · 4.83 KB
/
sheets.gs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/**
* Copyright Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var spreadsheetId = '1LcjJcCdM6OGrJtJEkHegV-rH5bWZ-mCukEMMCKYtUkc';
var sheetId = 371977894;
var pivotSourceDataSheetId = 371977894;
var destinationSheetId = 1428299768;
// [START apps_script_sheets_read_range]
/**
* Read a range (A1:D5) of data values. Logs the values.
* @param {string} spreadsheetId The spreadsheet ID to read from.
*/
function readRange(spreadsheetId) {
var response = Sheets.Spreadsheets.Values.get(spreadsheetId, 'Sheet1!A1:D5');
Logger.log(response.values);
}
// [END apps_script_sheets_read_range]
// [START apps_script_sheets_write_range]
/**
* Write to multiple, disjoint data ranges.
* @param {string} spreadsheetId The spreadsheet ID to write to.
*/
function writeToMultipleRanges(spreadsheetId) {
// Specify some values to write to the sheet.
var columnAValues = [
['Item', 'Wheel', 'Door', 'Engine']
];
var rowValues = [
['Cost', 'Stocked', 'Ship Date'],
['$20.50', '4', '3/1/2016']
];
var request = {
'valueInputOption': 'USER_ENTERED',
'data': [
{
'range': 'Sheet1!A1:A4',
'majorDimension': 'COLUMNS',
'values': columnAValues
},
{
'range': 'Sheet1!B1:D2',
'majorDimension': 'ROWS',
'values': rowValues
}
]
};
var response = Sheets.Spreadsheets.Values.batchUpdate(request, spreadsheetId);
Logger.log(response);
}
// [END apps_script_sheets_write_range]
// [START apps_script_sheets_new_sheet]
/**
* Add a new sheet with some properties.
* @param {string} spreadsheetId The spreadsheet ID.
*/
function addSheet(spreadsheetId) {
var requests = [{
'addSheet': {
'properties': {
'title': 'Deposits',
'gridProperties': {
'rowCount': 20,
'columnCount': 12
},
'tabColor': {
'red': 1.0,
'green': 0.3,
'blue': 0.4
}
}
}
}];
var response =
Sheets.Spreadsheets.batchUpdate({'requests': requests}, spreadsheetId);
Logger.log('Created sheet with ID: ' +
response.replies[0].addSheet.properties.sheetId);
}
// [END apps_script_sheets_new_sheet]
// [START apps_script_sheets_add_pivot_table]
/**
* Add a pivot table.
* @param {string} spreadsheetId The spreadsheet ID to add the pivot table to.
* @param {string} pivotSourceDataSheetId The sheet ID to get the data from.
* @param {string} destinationSheetId The sheet ID to add the pivot table to.
*/
function addPivotTable(
spreadsheetId, pivotSourceDataSheetId, destinationSheetId) {
var requests = [{
'updateCells': {
'rows': {
'values': [
{
'pivotTable': {
'source': {
'sheetId': pivotSourceDataSheetId,
'startRowIndex': 0,
'startColumnIndex': 0,
'endRowIndex': 20,
'endColumnIndex': 7
},
'rows': [
{
'sourceColumnOffset': 0,
'showTotals': true,
'sortOrder': 'ASCENDING',
'valueBucket': {
'buckets': [
{
'stringValue': 'West'
}
]
}
},
{
'sourceColumnOffset': 1,
'showTotals': true,
'sortOrder': 'DESCENDING',
'valueBucket': {}
}
],
'columns': [
{
'sourceColumnOffset': 4,
'sortOrder': 'ASCENDING',
'showTotals': true,
'valueBucket': {}
}
],
'values': [
{
'summarizeFunction': 'SUM',
'sourceColumnOffset': 3
}
],
'valueLayout': 'HORIZONTAL'
}
}
]
},
'start': {
'sheetId': destinationSheetId,
'rowIndex': 49,
'columnIndex': 0
},
'fields': 'pivotTable'
}
}];
var response =
Sheets.Spreadsheets.batchUpdate({'requests': requests}, spreadsheetId);
// The Pivot table will appear anchored to cell A50 of the destination sheet.
}
// [END apps_script_sheets_add_pivot_table]