Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi Everyone,
I have a case where I am required to show SLA Met based on a filter of week, region and location my data is represented like below:
And I need a return data in a seperate table or same table as per below based on per week per region and per locations SLA met - Yes count and total based on the same
The ultimate outcome is getting to SLA % which I am aware how to get but transformin the data to the table 2 in power bi is were i am strugling.
Currently I am using the below formula to get the Sla met by region
Solved! Go to Solution.
You can create a new table
Table 2 =
SUMMARIZE (
'Table',
[Week],
'Table'[Location],
[Region],
"Yes",
CALCULATE (
COUNTROWS ( 'Table' ),
ALLEXCEPT ( 'Table', 'Table'[Week], 'Table'[Region], 'Table'[Location] ),
'Table'[SLA Met] = "Yes"
),
"Total",
CALCULATE (
COUNTROWS ( 'Table' ),
ALLEXCEPT ( 'Table', 'Table'[Week], 'Table'[Region], 'Table'[Location] )
)
)
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can create a new table
Table 2 =
SUMMARIZE (
'Table',
[Week],
'Table'[Location],
[Region],
"Yes",
CALCULATE (
COUNTROWS ( 'Table' ),
ALLEXCEPT ( 'Table', 'Table'[Week], 'Table'[Region], 'Table'[Location] ),
'Table'[SLA Met] = "Yes"
),
"Total",
CALCULATE (
COUNTROWS ( 'Table' ),
ALLEXCEPT ( 'Table', 'Table'[Week], 'Table'[Region], 'Table'[Location] )
)
)
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 33 | |
| 31 | |
| 19 | |
| 12 | |
| 10 |