This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hello everyone,
I have a table that looks like the following below (With more rows). I am trying to create a formula with "Modeling - New Measure" to calculate the percent of closed won. I want to do percent = Closed Won / (Closed Lost + Won) in DAX expression. Thanks 🙂
Discount Percentage Stage Name
10% Closed Lost
17% Closed Won
8% Closed Won
11% Closed Lost
Solved! Go to Solution.
Hi, @Lattelin ;
You could create a measure as follows:
Measure = SUMX(FILTER(ALL('Table'),[Stage Name]="Closed Won"),[Discount Percentage])/SUMX(ALL('Table'),[Discount Percentage])
or
Measure =
DIVIDE (
SUMX (
FILTER ( ALL ( 'Table' ), [Stage Name] = "Closed Won" ),
[Discount Percentage]),
SUMX ( ALL ( 'Table' ), [Discount Percentage] ))
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Lattelin ;
You could create a measure as follows:
Measure = SUMX(FILTER(ALL('Table'),[Stage Name]="Closed Won"),[Discount Percentage])/SUMX(ALL('Table'),[Discount Percentage])
or
Measure =
DIVIDE (
SUMX (
FILTER ( ALL ( 'Table' ), [Stage Name] = "Closed Won" ),
[Discount Percentage]),
SUMX ( ALL ( 'Table' ), [Discount Percentage] ))
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey @Lattelin , i used this measure
See if works for you
@Lattelin , Assume Discount Percentage is a measure
Try meausre
divide(calculate([Discount Percentage], filter(Table , Table[Stage Name] = "Closed Won")),
calculate([Discount Percentage]))
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 23 | |
| 20 | |
| 19 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 56 | |
| 56 | |
| 42 | |
| 26 | |
| 24 |