- API -
cellSearchResults = reaper.AZ_GSheet_SearchCellsInAllWorksheets(connection, searchStr, range, isRegex)
- API Detail-
▼Input values
connection(GSheetConnection): spreadsheet connection info
searchStr(string): search string
range(string): search range (optional, default: "")
isRegex(boolean): whether to use regex (optional, default: false)
▼Output values
cellSearchResults(GSheetInfoArray): cell search results across all sheets
-number: search result list number
-Id: sheet ID
-Index: sheet index
-Name: sheet name
-Cells: cell
-number: cell list number
-RowNumber: row number
-Cells: cell
-CellAddress: cell address
-value: value
-RowNumber: row number
-ColNumber: column number
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_GOLD")
spreadSheetId = "**********"
connection = reaper.AZ_GSheet_Connect_UserAccount(spreadSheetId)
resultCell = reaper.AZ_GSheet_SearchCellsInAllWorksheets(connection, "RIGDOCKS", "A1:B3")
Msg(reaper.AZ_GetErrorCode())
ShowObject(resultCell)
reaper.AZ_GSheet_Disconnect(connection)
GoogleSpreadSheet
AZ_GSheet_SearchCellsInAllWorksheets
Supported versions:
1.5.0
onwards
Search for a cell across all sheets









