Hi all, I need a funnel chart where I need to group the second step in the funnel but not the first step.
For example, imagine Event1 is a screen_view of a particular screen and Event2 is a button_tap. Imagine there are 3 different buttons a user can tap. I need to see the conversion of:
- screen_view (total) → button_tap (buttonA) 60%
- screen_view (total) → button_tap (buttonB) 10%
- screen_view (total) → button_tap (buttonC) 30%
When I try to group by button name, I end up with all conversion rates being 100% because it is also splits the screen_view by button name. I have used a formula instead of a conversion as a work-around (%:UNIQUES(A)/UNIQUES(B)) but this loses the order of events and can change the resulting value.
Is there a way to view this as a conversion? basically converting from one starting point to 3 possible end points?
Thanks in advance!
**edit, to be clear the button names are an event property, not a user property