Hi - I’m trying to show a line graph that shows the average number of snaps taken per user by given day e.g.
Day 1: 50 total users, 100 snaps = 2 snaps per user
Day 2: 60 total users, 150 snaps = 2.5 snaps per user
Day 3: 70 total users, 200 snaps = 2.9 snaps per user
etc.
The closest I can see is by calculating the Took Snap event as Total Per User and aggregated by Average but this only includes all the users who took a snap and doesn’t do an average of all users. How can I calculate my average based on all users signed up?
Thanks