Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I need a measure that will show the percentage for only "Hit" and "Missed" and then blank or 0 will show for "No deadline set".
The computation for Hit should be Request Completed divided by Sum of Hit and Missed (2318 / 2524 = 0.92). Same with Missed it should be (206 / 2524 = 0.08).
Target = column
Request Completed = COUNTROWS(CustomerUpdates)
Hope this is possible.
Thanks in advance!
Solved! Go to Solution.
Hi @chesterraepined,
Please try this measure with my table called Table1:
Measure = if(SELECTEDVALUE(Table1[target])="No deadline set", 0,DIVIDE(SUM(Table1[Requested Completed]),CALCULATE(SUM(Table1[Requested Completed]), Table1[target] in {"Hit","Missed"}),BLANK()))
Hope it helps but experts can find more elaborate formula for you.
Ninter
Hi @chesterraepined,
Please try this measure with my table called Table1:
Measure = if(SELECTEDVALUE(Table1[target])="No deadline set", 0,DIVIDE(SUM(Table1[Requested Completed]),CALCULATE(SUM(Table1[Requested Completed]), Table1[target] in {"Hit","Missed"}),BLANK()))
Hope it helps but experts can find more elaborate formula for you.
Ninter
Hi @Interkoubess thanks for the reply.
The measure seems fine but the total is somehow different. The total 5708 was also divided to the sum of Hit and Missed (5708 / 2524 = 226.15%) . The Total should only be 100%
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
63 | |
55 | |
54 | |
36 | |
34 |
User | Count |
---|---|
76 | |
73 | |
46 | |
45 | |
43 |