-
How to determine page worth in Google Analytics 4?
Hey guys, I need some help. I’ve got a website with ads on it. Each ad has a specific click value. Now, every time a visitor clicks on an ad, I record that event along with the value info.
Here’s the code I use:
`javascript
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
‘event’: ‘top_ad_click’,
‘value’: value,
‘partner’: partner,
‘product’: product,
});
`
I’ve been trying to whip up a report table in Data Studio. I want it to show the page URLs and the total “value” for each of those pages. Any tips on how to make this happen?
So far, I’ve tried creating a report with Full Page Url as the dimension and SUM(Event value) as the metric. But I got stuck at a hurdle that read: Re-aggregating metrics is not supported. Can anyone bail me out here?
Log in to reply.