How do I search Google Spreadsheets?

前端 未结 5 1149
心在旅途
心在旅途 2020-11-30 09:24

I am doing a few exhaustive searches and need to determine if a new domain (URL) is already in a Spreadsheet. However, none of the Spreadsheet objects have search functions,

5条回答
  •  暖寄归人
    2020-11-30 09:56

    I ended up using spreadsheet formulas to solve my problem instead. Specifically, I used the MATCH() function, which can look up a string in an array (in this case a column in another sheet in the same document).

    This is significantly simpler than looping through an array, though less efficient and does not allow for full automation. In fact, when the column reached 2,000 entries, Google Drive froze so often, I had to start using Excel instead. Nevertheless, the Match() solution was more appropriate for what I was looking for.

    Appreciate all the other responses though.

提交回复
热议问题