Retrieve a subset of data using ImportJSON custom function
我正在使用 Trevor Lohrbeer 的
我不希望提供所有信息;我只想要列 E、V、W、X、AA、AB、AC、AD。
在意识到我不知道我在用这个参数做什么之前尝试了一些事情:
1 | =importjson("http://www.pgatour.com/data/r/stats/current/102.json","This","AndThis") |
如何修改此函数以仅检索上述项目?
您可以使用 QUERY 函数轻松完成此操作,对
1 | =QUERY(importjson("http://www.pgatour.com/data/r/stats/current/102.json"),"select Col5, Col22, Col23, Col24, Col27, Col28, Col29, Col30") |