Skip to content Skip to sidebar Skip to footer

Googleanalytics - Group Events By Users

I used the Google's developer guide's example to create an event for my Android app to see it in my Google Analytics account: // Get tracker. Tracker t = ((AnalyticsSampleApp) getA

Solution 1:

If you just want to be able to track event completions per session, then you can simply use your event in conjunction with goals (goals are only counted once per session). However, if you require counting events per user than you will probably have to use the User ID custom dimension.

Solution 2:

The way you need to do it is by creating a custom dimension (which is like a table's primary key which is for example a user id) and a custom metric (which is like a regular column in a table) and then you can make a custom report or a dashboard containing these dimensions and metrices.

This is a guide how to create them:

https://support.google.com/analytics/answer/2709829?hl=en

Post a Comment for "Googleanalytics - Group Events By Users"