Google sheet + Web 应用程序搜索特定列和 return 所有匹配行

Google sheet + Web app search specific column and return all matching rows

任何人都知道如何修改下面的代码以仅从 Google sheet 中的特定列进行搜索,例如J 列?

下面的代码效果很好,returns 匹配搜索文本的整行,但搜索跨越 google sheet 内的整个范围。 https://www.bpwebs.com/create-web-forms-to-get-data-from-google-sheets/comment-page-1/#comments

  const colIndex = 9; // Column J
  data.forEach(function(f) {
    if (f[colIndex] == searchtext) {
      ar.push(f);
    }
  });