Google sheets 自动将XML导入Google工作表

Google sheets 自动将XML导入Google工作表,google-sheets,google-sheets-formula,google-sheets-importxml,Google Sheets,Google Sheets Formula,Google Sheets Importxml,我想知道如何使用谷歌电子表格中的Importxml函数导入数据 在上面 我想导入数据 进口xmli2,I3 I2=https://www.tigeretf.com/front/products/product.do?ksdFund=KR7305080004&fundTypeCode=01000800 I3=//*[@id=container]/div[2]/div[2]/div[1]/div/table/tbody/tr/td[2]/strong/text 正在加载数据,无法刷新 我希望在每次刷

我想知道如何使用谷歌电子表格中的Importxml函数导入数据

在上面

我想导入数据

进口xmli2,I3

I2=https://www.tigeretf.com/front/products/product.do?ksdFund=KR7305080004&fundTypeCode=01000800

I3=//*[@id=container]/div[2]/div[2]/div[1]/div/table/tbody/tr/td[2]/strong/text

正在加载数据,无法刷新

我希望在每次刷新工作表时自动加载数据。

或许可以这样尝试:

=QUERY(IMPORTXML(
 "https://www.tigeretf.com/front/products/product.do?ksdFund=KR7305080004&fundTypeCode=01000800", 
 "//strong[@class='price']"), "offset 1")
=QUERY(IMPORTXML(
 "https://www.tigeretf.com/front/products/product.do?ksdFund=KR7305080004&fundTypeCode=01000800", 
 "//strong[@class='price']"), "offset 1")