Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
109 | |
97 | |
95 | |
38 | |
36 |
User | Count |
---|---|
151 | |
125 | |
75 | |
74 | |
53 |