在找到 A1 值的行中搜索另一个 google 传播 sheet 的 sheet 当前 sheet、return 列 A、B、C 的值
Search another google spreadsheet's sheet for A1 Value of current sheet, return column A,B,C's value in rows where A1 Value is found
我正在尝试查询位于当前 google 价差 sheet 的 A1 中的值,在 sheet 位于另一个价差 sheet 和 return 找到 A1 值的每一行的 A、B 和 C 列中的值。
我头晕。
我试过这个:
=query(importrange("https://docs.google.com/spreadsheets/d/XXXXXXXXXXXX/edit","Master Investor List!A11:AX"),"select A,B,C where R or U or X matches '"&A1&"',1)
但我得到这个错误:
Error Unable to parse query string for Function QUERY parameter 2: PARSE_ERROR: Encountered " "R "" at line 1, column 20. Was expecting one of: "(" ... "(" ...
尝试:
=QUERY({IMPORTRANGE("url_here"; "Master Investor List!A11:AX")};
"select Col1,Col2,Col3
where Col18 matches '"&A1&"'
or Col21 matches '"&A1&"'
or Col24 matches '"&A1&"'"; 1)
我正在尝试查询位于当前 google 价差 sheet 的 A1 中的值,在 sheet 位于另一个价差 sheet 和 return 找到 A1 值的每一行的 A、B 和 C 列中的值。
我头晕。
我试过这个:
=query(importrange("https://docs.google.com/spreadsheets/d/XXXXXXXXXXXX/edit","Master Investor List!A11:AX"),"select A,B,C where R or U or X matches '"&A1&"',1)
但我得到这个错误:
Error Unable to parse query string for Function QUERY parameter 2: PARSE_ERROR: Encountered " "R "" at line 1, column 20. Was expecting one of: "(" ... "(" ...
尝试:
=QUERY({IMPORTRANGE("url_here"; "Master Investor List!A11:AX")};
"select Col1,Col2,Col3
where Col18 matches '"&A1&"'
or Col21 matches '"&A1&"'
or Col24 matches '"&A1&"'"; 1)