我正在使用Google Datastudio,但由于某种奇怪的事物而被封锁。
我想制作一个包含全球序列和详细序列的图表。
但是要做到这一点,我有2个不同的分区,我不知道该怎么做。 这是我的数据集的一个示例:
+-------+----------+---------+---------+------------+
| Type | Detail | Country | Value | Date |
+-------+----------+---------+---------+------------+
| type1 | | uk | 60 000 | 2018-12-04 |
| type2 | detail-1 | uk | 15 000 | 2018-12-04 |
| type2 | detail-2 | uk | 11 000 | 2018-12-04 |
| type2 | detail-3 | uk | 4 500 | 2018-12-04 |
| type1 | | usa | 78 000 | 2018-12-04 |
| type2 | detail-1 | usa | 40 000 | 2018-12-04 |
| type2 | detail-2 | usa | 17 000 | 2018-12-04 |
| type2 | detail-3 | usa | 11 5000 | 2018-12-04 |
+-------+----------+---------+---------+------------+
我想要一个基于“类型”的系列,另一个想要基于“详细信息”的系列,那么我应该针对不同的国家/地区使用过滤器。
我该怎么做?我在这个简单的问题上花了很多时间,但我无法实现。
我的数据来自MySQL的SQL Cloud
应该是这样的:
答案 0 :(得分:1)
根据您的数据,您需要创建和使用三维尺寸
case when Detail is null then Type else Detail end
或者如果Detail实际上=''则
case when Detail = '' then Type else Detail end
或者可以确定
case when Detail is null or Detail = '' then Type else Detail end