Reputation: 1
I'm trying to filter website conversions from Google Analytics for a dashboard. However since it is a mixture of third party leads, events, and page path that contribute to the leads, I have to combine different types of filters. However combining folling metrics, the https://ga-dev-tools.appspot.com/query-explorer/ shows me the value 0 even if that's not correct.
Metrics: ga:totalEvents
Dimension:ga:date
ga:pagePath=@DialogNavigatorVertical,ga:eventAction==Texting form submit
I have tried multiple solutions, but can't figure out how to get the correct data. Can I not combine pagePath and evenAction?
Thank you so much for all your kind help,
Anna
Upvotes: 0
Views: 1284
Reputation: 15923
Events by definition are not page views. This means that an Event dimension (category, action, label) can't have page view metrics such as page views or average time on the page because that information does not relate to the specific event.
But you can definitely combine pagePath
and evenAction
. You are getting wrong results because of one of the following reasons
ga:pagePath=@DialogNavigatorVertical
is wrong, it must be either == or !=. it cant be an assignment operator;
. Semicolon is used for AND
operator in filters,
. Comma is used for OR
operator in filters==
must be %3D%3D
, space must be %20
and so on.Please have a look into settings here : https://developers.google.com/analytics/devguides/reporting/core/v3/reference#filters
Upvotes: 1