Home > Blockchain >  How can I return data from more than one cell in Google Sheets Apps Script?
How can I return data from more than one cell in Google Sheets Apps Script?

Time:01-04

so I'm currently using Google Sheets for an expense tracker I am making.

enter image description here

Dialog:

enter image description here

CodePudding user response:

to answer my question, the following line of code will allow me to accomplish what I wanted: const MORETHANONEHUNDRED = v => v.filter(([a]) => a > 100);. Thank you to Tanaike for the assistance.

  •  Tags:  
  • Related