Create a new sheet based on new names in a column
I would like to have a script that will automatically search a column onSubmit
for a persons name and copy the row to a sheet based on this name. If the sheet doesn't exist, i would like it created automatically, the names are entered into column C. The only answers to this i can find on StackOverflow are for when you know what names will appear. I do not know what the names will be. I tried this code by @CharlesHale but i can't get it to name the new sheet. Here is my code so far:
function onFormSubmit() {
// onFormSubmit
// get submitted data
var ss = SpreadsheetApp.openById('1eCdLnyx9Y2159gS0yVUxZLRsZSHxEGw0zUp5MqdSHVw');
var sheet = ss.getSheetByName("Form responses 1");
var row = sheet.getLastRow();
var Col = sheet.getLastColumn();
var headings = sheet.getRange(1,1,1,
Col).getValues();
var lastRow = sheet.getRange(row, 1, 1, Col);
var name = sheet.getRange(row, Col).getValue();
// check if username has sheet
if(ss.getSheetByName(name)){
var userSheet = ss.getSheetByName(name);
// if not make
} else {
var userSheet = ss.insertSheet(name);
userSheet.getRange(1,1,1,
headings[0].length).setValues(headings);
}
// copy submitted data to user's sheet
userSheet.appendRow(lastRow.getValues()[0]);
userSheet.setColumnWidth(1, 500);
userSheet.setColumnWidth(2, 500);
var FormatSheet = ss.getSheetByName(name);
var FormatRange = FormatSheet.getRange(1,1);
FormatRange.copyFormatToRange(userSheet,1,3,3,28);
}
I've attached my sheets for reference. Feedback form responses
Thanks in advance!
google-apps-script google-sheets
add a comment |
I would like to have a script that will automatically search a column onSubmit
for a persons name and copy the row to a sheet based on this name. If the sheet doesn't exist, i would like it created automatically, the names are entered into column C. The only answers to this i can find on StackOverflow are for when you know what names will appear. I do not know what the names will be. I tried this code by @CharlesHale but i can't get it to name the new sheet. Here is my code so far:
function onFormSubmit() {
// onFormSubmit
// get submitted data
var ss = SpreadsheetApp.openById('1eCdLnyx9Y2159gS0yVUxZLRsZSHxEGw0zUp5MqdSHVw');
var sheet = ss.getSheetByName("Form responses 1");
var row = sheet.getLastRow();
var Col = sheet.getLastColumn();
var headings = sheet.getRange(1,1,1,
Col).getValues();
var lastRow = sheet.getRange(row, 1, 1, Col);
var name = sheet.getRange(row, Col).getValue();
// check if username has sheet
if(ss.getSheetByName(name)){
var userSheet = ss.getSheetByName(name);
// if not make
} else {
var userSheet = ss.insertSheet(name);
userSheet.getRange(1,1,1,
headings[0].length).setValues(headings);
}
// copy submitted data to user's sheet
userSheet.appendRow(lastRow.getValues()[0]);
userSheet.setColumnWidth(1, 500);
userSheet.setColumnWidth(2, 500);
var FormatSheet = ss.getSheetByName(name);
var FormatRange = FormatSheet.getRange(1,1);
FormatRange.copyFormatToRange(userSheet,1,3,3,28);
}
I've attached my sheets for reference. Feedback form responses
Thanks in advance!
google-apps-script google-sheets
1
This will allow you to check whether a sheet with this name exists and react accordingly stackoverflow.com/questions/48974770/…
– a-burge
Nov 16 '18 at 2:11
This ought to get you going with using the value of a cell as a sheet name: Dynamic generation of sheet name from cell content and/or Auto create and name new sheet in Google Spreadsheet
– Tedinoz
Nov 17 '18 at 11:00
add a comment |
I would like to have a script that will automatically search a column onSubmit
for a persons name and copy the row to a sheet based on this name. If the sheet doesn't exist, i would like it created automatically, the names are entered into column C. The only answers to this i can find on StackOverflow are for when you know what names will appear. I do not know what the names will be. I tried this code by @CharlesHale but i can't get it to name the new sheet. Here is my code so far:
function onFormSubmit() {
// onFormSubmit
// get submitted data
var ss = SpreadsheetApp.openById('1eCdLnyx9Y2159gS0yVUxZLRsZSHxEGw0zUp5MqdSHVw');
var sheet = ss.getSheetByName("Form responses 1");
var row = sheet.getLastRow();
var Col = sheet.getLastColumn();
var headings = sheet.getRange(1,1,1,
Col).getValues();
var lastRow = sheet.getRange(row, 1, 1, Col);
var name = sheet.getRange(row, Col).getValue();
// check if username has sheet
if(ss.getSheetByName(name)){
var userSheet = ss.getSheetByName(name);
// if not make
} else {
var userSheet = ss.insertSheet(name);
userSheet.getRange(1,1,1,
headings[0].length).setValues(headings);
}
// copy submitted data to user's sheet
userSheet.appendRow(lastRow.getValues()[0]);
userSheet.setColumnWidth(1, 500);
userSheet.setColumnWidth(2, 500);
var FormatSheet = ss.getSheetByName(name);
var FormatRange = FormatSheet.getRange(1,1);
FormatRange.copyFormatToRange(userSheet,1,3,3,28);
}
I've attached my sheets for reference. Feedback form responses
Thanks in advance!
google-apps-script google-sheets
I would like to have a script that will automatically search a column onSubmit
for a persons name and copy the row to a sheet based on this name. If the sheet doesn't exist, i would like it created automatically, the names are entered into column C. The only answers to this i can find on StackOverflow are for when you know what names will appear. I do not know what the names will be. I tried this code by @CharlesHale but i can't get it to name the new sheet. Here is my code so far:
function onFormSubmit() {
// onFormSubmit
// get submitted data
var ss = SpreadsheetApp.openById('1eCdLnyx9Y2159gS0yVUxZLRsZSHxEGw0zUp5MqdSHVw');
var sheet = ss.getSheetByName("Form responses 1");
var row = sheet.getLastRow();
var Col = sheet.getLastColumn();
var headings = sheet.getRange(1,1,1,
Col).getValues();
var lastRow = sheet.getRange(row, 1, 1, Col);
var name = sheet.getRange(row, Col).getValue();
// check if username has sheet
if(ss.getSheetByName(name)){
var userSheet = ss.getSheetByName(name);
// if not make
} else {
var userSheet = ss.insertSheet(name);
userSheet.getRange(1,1,1,
headings[0].length).setValues(headings);
}
// copy submitted data to user's sheet
userSheet.appendRow(lastRow.getValues()[0]);
userSheet.setColumnWidth(1, 500);
userSheet.setColumnWidth(2, 500);
var FormatSheet = ss.getSheetByName(name);
var FormatRange = FormatSheet.getRange(1,1);
FormatRange.copyFormatToRange(userSheet,1,3,3,28);
}
I've attached my sheets for reference. Feedback form responses
Thanks in advance!
google-apps-script google-sheets
google-apps-script google-sheets
edited Nov 16 '18 at 2:14
Aidan Wilson
asked Nov 16 '18 at 1:48
Aidan WilsonAidan Wilson
125
125
1
This will allow you to check whether a sheet with this name exists and react accordingly stackoverflow.com/questions/48974770/…
– a-burge
Nov 16 '18 at 2:11
This ought to get you going with using the value of a cell as a sheet name: Dynamic generation of sheet name from cell content and/or Auto create and name new sheet in Google Spreadsheet
– Tedinoz
Nov 17 '18 at 11:00
add a comment |
1
This will allow you to check whether a sheet with this name exists and react accordingly stackoverflow.com/questions/48974770/…
– a-burge
Nov 16 '18 at 2:11
This ought to get you going with using the value of a cell as a sheet name: Dynamic generation of sheet name from cell content and/or Auto create and name new sheet in Google Spreadsheet
– Tedinoz
Nov 17 '18 at 11:00
1
1
This will allow you to check whether a sheet with this name exists and react accordingly stackoverflow.com/questions/48974770/…
– a-burge
Nov 16 '18 at 2:11
This will allow you to check whether a sheet with this name exists and react accordingly stackoverflow.com/questions/48974770/…
– a-burge
Nov 16 '18 at 2:11
This ought to get you going with using the value of a cell as a sheet name: Dynamic generation of sheet name from cell content and/or Auto create and name new sheet in Google Spreadsheet
– Tedinoz
Nov 17 '18 at 11:00
This ought to get you going with using the value of a cell as a sheet name: Dynamic generation of sheet name from cell content and/or Auto create and name new sheet in Google Spreadsheet
– Tedinoz
Nov 17 '18 at 11:00
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53330330%2fcreate-a-new-sheet-based-on-new-names-in-a-column%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53330330%2fcreate-a-new-sheet-based-on-new-names-in-a-column%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
This will allow you to check whether a sheet with this name exists and react accordingly stackoverflow.com/questions/48974770/…
– a-burge
Nov 16 '18 at 2:11
This ought to get you going with using the value of a cell as a sheet name: Dynamic generation of sheet name from cell content and/or Auto create and name new sheet in Google Spreadsheet
– Tedinoz
Nov 17 '18 at 11:00