Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I separate a column into their own sheet using maps?

I am trying to use this map provided by a previous question I had.

In this case, it takes the sales rep's name, creates a sheet with their name and then moves all orders that belong to them to their sheet. This is what the code looks like.

function sortByRep(sheet){
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheet = ss.getSheetByName("All Orders");
  var range = sheet.getRange("A2:H" + sheet.getLastRow());
  var values = range.getValues();
  var sheets = [...new Set(values.map(r => r[6]))].reduce((o, e) => (o[e] = ss.getSheetByName(e) || ss.insertSheet(e), o), {});
  [...values.reduce((m, r) => m.set(r[6], m.has(r[6]) ? [m.get(r[6]), r] : r), new Map())]
    .forEach(([k, v]) => {
      var s = sheets[k];
      if (s) s.getRange(s.getLastRow() + 1, 1, v.length, v[0].length).setValues(v);
    });

But I get this error:

Exception: The parameters (number,number,number,null) don't match the method signature for SpreadsheetApp.Sheet.getRange.

I think it has to be because there are spaces in the names? But I'm not sure.enter image description here

I have added this picture as an example. I want my script to make a new sheet with the sales rep name and move all of their orders to that sheet.

like image 221
Patrick Avatar asked Nov 17 '25 13:11

Patrick


1 Answers

In your script, how about the following modification?

From:

[...values.reduce((m, r) => m.set(r[6], m.has(r[6]) ? [m.get(r[6]), r] : r), new Map())]
  .forEach(([k, v]) => {
    var s = sheets[k];
    if (s) s.getRange(s.getLastRow() + 1, 1, v.length, v[0].length).setValues(v);
  });

To:

[...values.reduce((m, r) => m.set(r[6], m.has(r[6]) ? [...m.get(r[6]), r] : [r]), new Map())]
  .forEach(([k, v]) => {
    var s = sheets[k];
    if (s) s.getRange(s.getLastRow() + 1, 1, v.length, v[0].length).setValues(v);
  });
  • In this modification, both one row and multiple rows can be used.
like image 71
Tanaike Avatar answered Nov 20 '25 03:11

Tanaike



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!