Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/google-sheets/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google sheets 使用谷歌表单构建动态谷歌搜索链接_Google Sheets_Hyperlink_Google Sheets Formula_Array Formulas_Google Finance - Fatal编程技术网

Google sheets 使用谷歌表单构建动态谷歌搜索链接

Google sheets 使用谷歌表单构建动态谷歌搜索链接,google-sheets,hyperlink,google-sheets-formula,array-formulas,google-finance,Google Sheets,Hyperlink,Google Sheets Formula,Array Formulas,Google Finance,我希望在Excel中创建一个列,链接到谷歌搜索特定股票,具体取决于列a中的股票符号。例如,如果列A1=AAPL b1将是: 使用A1中的符号,单元格b1将创建一个用于谷歌搜索的链接。我知道这可以在谷歌表单中完成,但我不确定确切的语法 ="https://www.google.com/search?q="&A1 你的意思是:?是的,像那样,但是使用a1单元格中的符号来创建B1单元格中的完整链接你的意思是:?是的,像那样,但是使用a1单元格中的符号来创建B1单元

我希望在Excel中创建一个列,链接到谷歌搜索特定股票,具体取决于列a中的股票符号。例如,如果列A1=
AAPL

b1将是:

使用A1中的符号,单元格b1将创建一个用于谷歌搜索的链接。我知道这可以在谷歌表单中完成,但我不确定确切的语法

="https://www.google.com/search?q="&A1








你的意思是:?是的,像那样,但是使用a1单元格中的符号来创建B1单元格中的完整链接你的意思是:?是的,像那样,但是使用a1单元格中的符号来创建B1单元格中的完整链接这周你对我很有帮助!这周你帮了我不少忙!
=HYPERLINK("https://www.google.com/search?q="&A1, "search now")
=ARRAYFORMULA(HYPERLINK("https://www.google.com/search?q="&A1:A2, 
 "search for "&A1:A2))
=GOOGLEFINANCE(A1, "price")