Forum Discussion
Calculate daily open rate %
Hi there,
I need to get the daily open rates for the below table but since Send Date is only recorded on Nov 24th I'm getting null/infinity return with my calculations for the open volumes recorded 25th/26th/27th
My data has an event_type field which was used to create the three calculated fields in my table below. The TOTAL_VOLUME measure was preloaded with the data.
Any help would be much appreciated! 🙂
Thanks
Eve
Actually just solved it using a new calculation for emails sent with ALL and FILTER
2 Replies
- obothewizard
Helper I
Actually just solved it using a new calculation for emails sent with ALL and FILTER
- amitchandak
Super User
obothewizard , Email send should be running total in this case
Email Sent =
calculate(COUNTROWS(filter(PRODUCTION_TRACKING_DASHBOARD,PRODUCTION_TRACKING_DASHBOARD[EMAIL_EVENT_TYPE]="Sent")), filter(all(Date), 'Date'[Date] <= Max('Date'[Date]) ))
prefer a date table
Running Total/ Cumulative: https://www.youtube.com/watch?v=h2wsO332LUo&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=41
also use divide function to divide