用QUERY构建x/y表格

huangapple go评论58阅读模式
英文:

Build a x/y Table with QUERY

问题

我想从我的查询数据库中创建一个x/y表格。我只是不知道如何做,或者应该搜索什么。。。应该可以创建一个类似右侧的图表。我猜我只能通过创建上面的这样一个图表来实现这个目标,但我不知道如何构建它。

以下是可供参考的Google表格链接:
https://docs.google.com/spreadsheets/d/1prpRS-NHXSXPxzcSh2pgvHiOatkkyIO5Qb0QRDQrWsY/edit?usp=sharing

英文:

I would like to create a x/y Table out of my QUERY Database.
I just don't know how to do that or what to google for..
It should be possible to create a graph like on the right side.
And I guess I can only do this by creating such a chart above,
which I have no clue how to build that..

用QUERY构建x/y表格

Here the Google Sheet to play with:
https://docs.google.com/spreadsheets/d/1prpRS-NHXSXPxzcSh2pgvHiOatkkyIO5Qb0QRDQrWsY/edit?usp=sharing

答案1

得分: 1

你可以在QUERY函数内部使用pivot来实现这样的结果:

=QUERY(B4:D;"SELECT C,SUM(D) where C is not null group by C pivot B";1)

用QUERY构建x/y表格

英文:

You can use pivot inside QUERY to achieve a result like that:

=QUERY(B4:D;"SELECT C,SUM(D) where C is not null group by C pivot B";1)

用QUERY构建x/y表格

huangapple
  • 本文由 发表于 2023年2月6日 19:45:38
  • 转载请务必保留本文链接:https://go.coder-hub.com/75360892.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定