Array into one Column not working- Google Script
so I'm new to Google Scripts and wrote a code that'll allow me to get unique values from a different sheet called "BSP_SampleList" and write it into another sheet called "Email".
However, I'm having difficulties listing values in one column. I was successful at listing values using TSCAnumbsheet.getRange(i+1,2,1,1).setValue([a.join(', ')]) in one cell. I would like to get these values and write them in one column, with varying rows if that makes sense.
For example: if I have three items [apple, orange, grape]. Instead of writing it in this manner, I would like to write it as:
in Column A
1 apple
2 orange
3 grape
NOT [apple, orange, grape].
Here is my code:
function myArray() {
var ss, s, s2, a, b;
ss = SpreadsheetApp.getActive();
s = ss.getSheetByName("BSP_SampleList").getRange(2, 22, 22).getValues();
s2 = ss.getSheetByName("BSP_SampleList").getRange(2, 26, 26).getValues();
a = ;
a.push(s[0]);
b = ;
b.push(s2[0]);
for (var n = 1; n < s.length; n++) {
if (a.join().indexOf(s[n].join()) == -1) {
a.push(s[n])}}
for (var m = 1; m < s2.length; m++) {
if (b.join().indexOf(s2[m].join()) == -1) {
b.push(s2[m])
Logger.log(b.length)}}
var data = ss.getSheetByName("Sheet1").getDataRange().getValues();
var TSCAnumb = ss.getSheetByName("BSP_SampleList").getDataRange().getValues();
var TSCAnumbsheet = ss.getSheetByName("Sheet1");
var TSCAnumb2 = ss.getSheetByName("BSP_SampleList");
var Emailsheet = ss.getSheetByName("Email");
var Rangea = a.length
var Rangeb = b.length
Logger.log(Rangea)
for(var i = 0; i<data.length;i++){
if(data[i][0] == TSCAnumb[1][0]){ //[0] = column A
TSCAnumbsheet.getRange(i+1,2,1,1).setValue([a.join(', ')]) //container number
TSCAnumbsheet.getRange(i+1,3,1,1).setValue([b.join(', ')]) //container name
TSCAnumbsheet.getRange(i+1,7,1,1).setValue(TSCAnumb2.getLastRow()-1) //number of samples
TSCAnumbsheet.getRange(i+1,8,1,1).setValue(TSCAnumb2.getRange("A3").getValue()) //sample type
Emailsheet.getRange(2,4,1,1).setValue(TSCAnumb2.getRange("A2").getValue()) //TSCAbatch
Emailsheet.getRange(2,5,Rangea,1).setValue(a)
Emailsheet.getRange(2,6,Rangeb,1).setValue(b)
}
else{
Emailsheet.getRange(2,4,1,1).clearContent(); //TSCAbatch
}
//Emailsheet.getRange(i+1,4,1,1).setValue(TSCAnumb2.getRange("A2").getValue()) //TSCAnumb
//Emailsheet.getRange(i+1,5,1,1).setValue([a.join(', ')]) //container number
//Emailsheet.getRange(i+1,6,1,1).setValue([b.join(', ')]) //container name
}
}
google-apps-script
add a comment |
so I'm new to Google Scripts and wrote a code that'll allow me to get unique values from a different sheet called "BSP_SampleList" and write it into another sheet called "Email".
However, I'm having difficulties listing values in one column. I was successful at listing values using TSCAnumbsheet.getRange(i+1,2,1,1).setValue([a.join(', ')]) in one cell. I would like to get these values and write them in one column, with varying rows if that makes sense.
For example: if I have three items [apple, orange, grape]. Instead of writing it in this manner, I would like to write it as:
in Column A
1 apple
2 orange
3 grape
NOT [apple, orange, grape].
Here is my code:
function myArray() {
var ss, s, s2, a, b;
ss = SpreadsheetApp.getActive();
s = ss.getSheetByName("BSP_SampleList").getRange(2, 22, 22).getValues();
s2 = ss.getSheetByName("BSP_SampleList").getRange(2, 26, 26).getValues();
a = ;
a.push(s[0]);
b = ;
b.push(s2[0]);
for (var n = 1; n < s.length; n++) {
if (a.join().indexOf(s[n].join()) == -1) {
a.push(s[n])}}
for (var m = 1; m < s2.length; m++) {
if (b.join().indexOf(s2[m].join()) == -1) {
b.push(s2[m])
Logger.log(b.length)}}
var data = ss.getSheetByName("Sheet1").getDataRange().getValues();
var TSCAnumb = ss.getSheetByName("BSP_SampleList").getDataRange().getValues();
var TSCAnumbsheet = ss.getSheetByName("Sheet1");
var TSCAnumb2 = ss.getSheetByName("BSP_SampleList");
var Emailsheet = ss.getSheetByName("Email");
var Rangea = a.length
var Rangeb = b.length
Logger.log(Rangea)
for(var i = 0; i<data.length;i++){
if(data[i][0] == TSCAnumb[1][0]){ //[0] = column A
TSCAnumbsheet.getRange(i+1,2,1,1).setValue([a.join(', ')]) //container number
TSCAnumbsheet.getRange(i+1,3,1,1).setValue([b.join(', ')]) //container name
TSCAnumbsheet.getRange(i+1,7,1,1).setValue(TSCAnumb2.getLastRow()-1) //number of samples
TSCAnumbsheet.getRange(i+1,8,1,1).setValue(TSCAnumb2.getRange("A3").getValue()) //sample type
Emailsheet.getRange(2,4,1,1).setValue(TSCAnumb2.getRange("A2").getValue()) //TSCAbatch
Emailsheet.getRange(2,5,Rangea,1).setValue(a)
Emailsheet.getRange(2,6,Rangeb,1).setValue(b)
}
else{
Emailsheet.getRange(2,4,1,1).clearContent(); //TSCAbatch
}
//Emailsheet.getRange(i+1,4,1,1).setValue(TSCAnumb2.getRange("A2").getValue()) //TSCAnumb
//Emailsheet.getRange(i+1,5,1,1).setValue([a.join(', ')]) //container number
//Emailsheet.getRange(i+1,6,1,1).setValue([b.join(', ')]) //container name
}
}
google-apps-script
1
Possible duplicate of 1D Array to fill a spreadsheet column
– TheMaster
Nov 22 '18 at 0:14
add a comment |
so I'm new to Google Scripts and wrote a code that'll allow me to get unique values from a different sheet called "BSP_SampleList" and write it into another sheet called "Email".
However, I'm having difficulties listing values in one column. I was successful at listing values using TSCAnumbsheet.getRange(i+1,2,1,1).setValue([a.join(', ')]) in one cell. I would like to get these values and write them in one column, with varying rows if that makes sense.
For example: if I have three items [apple, orange, grape]. Instead of writing it in this manner, I would like to write it as:
in Column A
1 apple
2 orange
3 grape
NOT [apple, orange, grape].
Here is my code:
function myArray() {
var ss, s, s2, a, b;
ss = SpreadsheetApp.getActive();
s = ss.getSheetByName("BSP_SampleList").getRange(2, 22, 22).getValues();
s2 = ss.getSheetByName("BSP_SampleList").getRange(2, 26, 26).getValues();
a = ;
a.push(s[0]);
b = ;
b.push(s2[0]);
for (var n = 1; n < s.length; n++) {
if (a.join().indexOf(s[n].join()) == -1) {
a.push(s[n])}}
for (var m = 1; m < s2.length; m++) {
if (b.join().indexOf(s2[m].join()) == -1) {
b.push(s2[m])
Logger.log(b.length)}}
var data = ss.getSheetByName("Sheet1").getDataRange().getValues();
var TSCAnumb = ss.getSheetByName("BSP_SampleList").getDataRange().getValues();
var TSCAnumbsheet = ss.getSheetByName("Sheet1");
var TSCAnumb2 = ss.getSheetByName("BSP_SampleList");
var Emailsheet = ss.getSheetByName("Email");
var Rangea = a.length
var Rangeb = b.length
Logger.log(Rangea)
for(var i = 0; i<data.length;i++){
if(data[i][0] == TSCAnumb[1][0]){ //[0] = column A
TSCAnumbsheet.getRange(i+1,2,1,1).setValue([a.join(', ')]) //container number
TSCAnumbsheet.getRange(i+1,3,1,1).setValue([b.join(', ')]) //container name
TSCAnumbsheet.getRange(i+1,7,1,1).setValue(TSCAnumb2.getLastRow()-1) //number of samples
TSCAnumbsheet.getRange(i+1,8,1,1).setValue(TSCAnumb2.getRange("A3").getValue()) //sample type
Emailsheet.getRange(2,4,1,1).setValue(TSCAnumb2.getRange("A2").getValue()) //TSCAbatch
Emailsheet.getRange(2,5,Rangea,1).setValue(a)
Emailsheet.getRange(2,6,Rangeb,1).setValue(b)
}
else{
Emailsheet.getRange(2,4,1,1).clearContent(); //TSCAbatch
}
//Emailsheet.getRange(i+1,4,1,1).setValue(TSCAnumb2.getRange("A2").getValue()) //TSCAnumb
//Emailsheet.getRange(i+1,5,1,1).setValue([a.join(', ')]) //container number
//Emailsheet.getRange(i+1,6,1,1).setValue([b.join(', ')]) //container name
}
}
google-apps-script
so I'm new to Google Scripts and wrote a code that'll allow me to get unique values from a different sheet called "BSP_SampleList" and write it into another sheet called "Email".
However, I'm having difficulties listing values in one column. I was successful at listing values using TSCAnumbsheet.getRange(i+1,2,1,1).setValue([a.join(', ')]) in one cell. I would like to get these values and write them in one column, with varying rows if that makes sense.
For example: if I have three items [apple, orange, grape]. Instead of writing it in this manner, I would like to write it as:
in Column A
1 apple
2 orange
3 grape
NOT [apple, orange, grape].
Here is my code:
function myArray() {
var ss, s, s2, a, b;
ss = SpreadsheetApp.getActive();
s = ss.getSheetByName("BSP_SampleList").getRange(2, 22, 22).getValues();
s2 = ss.getSheetByName("BSP_SampleList").getRange(2, 26, 26).getValues();
a = ;
a.push(s[0]);
b = ;
b.push(s2[0]);
for (var n = 1; n < s.length; n++) {
if (a.join().indexOf(s[n].join()) == -1) {
a.push(s[n])}}
for (var m = 1; m < s2.length; m++) {
if (b.join().indexOf(s2[m].join()) == -1) {
b.push(s2[m])
Logger.log(b.length)}}
var data = ss.getSheetByName("Sheet1").getDataRange().getValues();
var TSCAnumb = ss.getSheetByName("BSP_SampleList").getDataRange().getValues();
var TSCAnumbsheet = ss.getSheetByName("Sheet1");
var TSCAnumb2 = ss.getSheetByName("BSP_SampleList");
var Emailsheet = ss.getSheetByName("Email");
var Rangea = a.length
var Rangeb = b.length
Logger.log(Rangea)
for(var i = 0; i<data.length;i++){
if(data[i][0] == TSCAnumb[1][0]){ //[0] = column A
TSCAnumbsheet.getRange(i+1,2,1,1).setValue([a.join(', ')]) //container number
TSCAnumbsheet.getRange(i+1,3,1,1).setValue([b.join(', ')]) //container name
TSCAnumbsheet.getRange(i+1,7,1,1).setValue(TSCAnumb2.getLastRow()-1) //number of samples
TSCAnumbsheet.getRange(i+1,8,1,1).setValue(TSCAnumb2.getRange("A3").getValue()) //sample type
Emailsheet.getRange(2,4,1,1).setValue(TSCAnumb2.getRange("A2").getValue()) //TSCAbatch
Emailsheet.getRange(2,5,Rangea,1).setValue(a)
Emailsheet.getRange(2,6,Rangeb,1).setValue(b)
}
else{
Emailsheet.getRange(2,4,1,1).clearContent(); //TSCAbatch
}
//Emailsheet.getRange(i+1,4,1,1).setValue(TSCAnumb2.getRange("A2").getValue()) //TSCAnumb
//Emailsheet.getRange(i+1,5,1,1).setValue([a.join(', ')]) //container number
//Emailsheet.getRange(i+1,6,1,1).setValue([b.join(', ')]) //container name
}
}
google-apps-script
google-apps-script
asked Nov 22 '18 at 0:05
COHCOH
82
82
1
Possible duplicate of 1D Array to fill a spreadsheet column
– TheMaster
Nov 22 '18 at 0:14
add a comment |
1
Possible duplicate of 1D Array to fill a spreadsheet column
– TheMaster
Nov 22 '18 at 0:14
1
1
Possible duplicate of 1D Array to fill a spreadsheet column
– TheMaster
Nov 22 '18 at 0:14
Possible duplicate of 1D Array to fill a spreadsheet column
– TheMaster
Nov 22 '18 at 0:14
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%2f53422146%2farray-into-one-column-not-working-google-script%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%2f53422146%2farray-into-one-column-not-working-google-script%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
Possible duplicate of 1D Array to fill a spreadsheet column
– TheMaster
Nov 22 '18 at 0:14