March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all, I'm trying to calculate the open rate for email messages based on the following data. How would I create a measure that divides emails opened/emails sent?
Feature | Month | Total |
Emails sent | April | 1000 |
Emails Opened | April | 100 |
Solved! Go to Solution.
Percentage =
var _sent = Calculate (Sum(Table[Total]), Filter(ALLExcept(Table,Table[month])), Table[Feature]) = "Email sent")
var _open = Calculate (Sum(Table[Total]), Filter(ALLExcept(Table,Table[month])), Table[Feature]) = "Email opened")
Return
Divide(_open,_sent)
Hi @Anonymous ,
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
@Anonymous
Measure =
DIVIDE(
CALCULATE(SUM(Table[Total]), Table[Feature] = "Emails Opened"),
CALCULATE(SUM(Table[Total]), Table[Feature] = "Emails sent")
)
Percentage =
var _sent = Calculate (Sum(Table[Total]), Filter(ALLExcept(Table,Table[month])), Table[Feature]) = "Email sent")
var _open = Calculate (Sum(Table[Total]), Filter(ALLExcept(Table,Table[month])), Table[Feature]) = "Email opened")
Return
Divide(_open,_sent)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |