在 Google Data Studio 中创建新指标以仅计算品牌 KW 印象
Create new metric in Google Data Studio to Count Only Branded KW Impression
我试图在 Google Data Studio 中计算我的 branded/unbranded 展示次数,当我尝试创建新字段时 运行 陷入困境:
Case
when REGEXP_MATCH(Query,'will enter branded KWs here')
then count(Impressions)
End
这当然行不通,但想知道是否有任何变通方法可以实现我想要的效果。有什么想法吗?
可以通过Reaggregation (Blending a Data Source with itself); The Sample Google Search Console Data Source has disabled field editing (thus unable to test the proposed solution), however, adding a link to a Similar Solution for a Google Analytics Post, which includes a GIF of the process实现。
0) 分解
Google Analytics、Ads 等中的指标目前是预先聚合的(这是蓝色的原因),因此需要对其进行分解才能执行所需的计算。有两种方法:一种是使用 Data Extract,另一种是数据混合(在此示例中使用:下面的#1)
1) 混合数据源(重新聚合)
使用以下字段创建混合数据源:
- 加入密钥#1:日期
- 连接键#2:查询
- 指标:展示次数
2) 时间序列图
- 维度:日期
- 公制:Impressions_Branded
3) Impressions_Branded (Calculated Field)
CASE
WHEN REGEXP_MATCH(Query, 'will enter branded KWs here') THEN Impressions
END
我试图在 Google Data Studio 中计算我的 branded/unbranded 展示次数,当我尝试创建新字段时 运行 陷入困境:
Case
when REGEXP_MATCH(Query,'will enter branded KWs here')
then count(Impressions)
End
这当然行不通,但想知道是否有任何变通方法可以实现我想要的效果。有什么想法吗?
可以通过Reaggregation (Blending a Data Source with itself); The Sample Google Search Console Data Source has disabled field editing (thus unable to test the proposed solution), however, adding a link to a Similar Solution for a Google Analytics Post, which includes a GIF of the process实现。
0) 分解
Google Analytics、Ads 等中的指标目前是预先聚合的(这是蓝色的原因),因此需要对其进行分解才能执行所需的计算。有两种方法:一种是使用 Data Extract,另一种是数据混合(在此示例中使用:下面的#1)
1) 混合数据源(重新聚合)
使用以下字段创建混合数据源:
- 加入密钥#1:日期
- 连接键#2:查询
- 指标:展示次数
2) 时间序列图
- 维度:日期
- 公制:Impressions_Branded
3) Impressions_Branded (Calculated Field)
CASE
WHEN REGEXP_MATCH(Query, 'will enter branded KWs here') THEN Impressions
END