I know similar questions were asked before, but none of the answers that I found (example here, another example) helped me.
Create a report in Google Data Studio that shows me number of Unique Page Views VS Specific Event. For example: how many users visited page X, and how many of those clicked in button Y.
(Example of what I am trying to achieve) ☝️
Google Analytics is configured and events are tracked. When I go to Google Analytics I can see the numbers there. Google Data Studio is already connected to my Google Analytics and the numbers are matching.
Test 1
Create a chart using Unique Page Views
and Unique Events
metrics and set a filter with Event Name = "Button clicked"
, but that filters my Unique Page Views
metric and I end up with wrong numbers.
Test 2
Create a Calculated Field using:
SUM(case when REGEXP_MATCH(Event Action, "Button clicked") then 1 else 0 end)
or using:
COUNT(case when REGEXP_MATCH(Event Action, "Button clicked" ) then "Button clicked" else NULL end)
But this only returns 1
Appreciate any other ideas 💡
COUNT_DISTINCT returns the total number of unique items in that field or expression. To count all items, including duplicates, use COUNT . There are 2 other ways to apply this function: In a data source, change a field's Aggregation type to Count Distinct .
An event allows you to measure a distinct user interaction on a website or app. For example, loading a page, clicking a link, and completing a purchase are all interactions you can measure with events.
Convert your data into seconds (as a number), and then your recognize this data as time in Data Studio. For example, convert 00:03:00 into 180 seconds in your data sheet [You can use = ( seconds (a1) + minutes (A1)*60)] then set the field in GDS as a number, and type as Duration.
Try data blending feature:
Example (with addition of unfiltered plot for comparison):
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With