How to use UNNEST Params in Google Data Studio - How to create Firebase event report with UNNEST action & label params in Google Data Studio

邮差的信 提交于 2019-12-08 02:27:16

问题


We extract event report with param name action & label by querying below in Bigquery

#standardSQL
select 
  event_name, 
  param1.value.string_value as action,
  param2.value.string_value as label,
  count(1) as eventcount
From `<table>`,
UNNEST(event_params) as param1,
UNNEST(event_params) as param2
where event_name = 'BotNav' 
and param1.key='action' 
and param2.key='label' 
group by 1, 2, 3 
order by eventcount desc

**But, How to fetch this report via data studio. How to UNNEST Param in google data studio. I am able to filter event param name contains action & label in google datastudio. But i am unable to unnest the action & label in data studio. Due to this I am unable to correlate action & label elements. Pls help

Pls find below the google data studio report screenshot for your kind reference**
datastudio report screenshot

来源:https://stackoverflow.com/questions/54956102/how-to-use-unnest-params-in-google-data-studio-how-to-create-firebase-event-re

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!