I\'m trying to display the source property name within the Google Analytics roll up property I have linked to bigquery. Issue is, is that when I try the below some of the me
I think the reason why the calculated bounce rate is much higher in the query from William Fuks is the following
WHEN (h.isentrance = TRUE AND h.isexit = TRUE) THEN 1 END) bounces
It seems that isEntrance and isExit only happens on PAGE hits and so does not account for events. Hence the over count of bounces is due to single page views that might have had one or more interaction events happen on the page.