Event counter with a provided amount instead of 1
We track video completion events using the built in HTML5 "% complete" condition. With this we have the following rules sending events:
- 0%: event10 and event15=0
- 25%: event11 and event15=25
- 50%: event12 and event15=25
- 75%: event13 and event15=25
- 100%: event14 and event15=25
I was expecting in Analytics that it would accumulate the values of event15 so if the video is watched until the end it would show 100(%). But as there are 5 events I get 5 as the value so it incremented it by 1 for each call. Is it even possible to achieve what I was trying, if yes, how would I need to configure the event or the value?