使用 ImportJSON 自定义函数检索数据子集
Retrieve a subset of data using ImportJSON custom function
我正在将 Trevor Lohrbeer 的 importjson()
custom function to import some data from this JSON source 用于 Google Sheet。
我不想要所有提供的信息;我特别只想要 E、V、W、X、AA、AB、AC、AD 列。
我尝试了一些东西才意识到我不知道我在用这个参数做什么:
=importjson("http://www.pgatour.com/data/r/stats/current/102.json","This","AndThis")
如何修改此函数以仅检索上述项目?
您可以使用 QUERY function、post 过滤 importjson()
调用的结果轻松地做到这一点。:
=QUERY(importjson("http://www.pgatour.com/data/r/stats/current/102.json"),"select Col5, Col22, Col23, Col24, Col27, Col28, Col29, Col30")
我正在将 Trevor Lohrbeer 的 importjson()
custom function to import some data from this JSON source 用于 Google Sheet。
我不想要所有提供的信息;我特别只想要 E、V、W、X、AA、AB、AC、AD 列。
我尝试了一些东西才意识到我不知道我在用这个参数做什么:
=importjson("http://www.pgatour.com/data/r/stats/current/102.json","This","AndThis")
如何修改此函数以仅检索上述项目?
您可以使用 QUERY function、post 过滤 importjson()
调用的结果轻松地做到这一点。:
=QUERY(importjson("http://www.pgatour.com/data/r/stats/current/102.json"),"select Col5, Col22, Col23, Col24, Col27, Col28, Col29, Col30")