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
I Have a table name called KPI . this table having two following column
Month SLA KPI
January 63
Febuary 63
Total SLA KPI Sum 126 . but i want find the percentage seperate Month wise and total of Month value .
January Month SLA KPI / January Month total
=63/63 => 100%
looking for support . thanks in advance
Solved! Go to Solution.
hi @Anonymous
try to add a calculated column like:
Column =
DIVIDE(
[SLA KPI],
SUMX(
FILTER(
TableName,
TableName[Month]=EARLIER(TableName[Month])
),
TableName[[SLA KPI]]
)
)
hi @Anonymous
try to add a calculated column like:
Column =
DIVIDE(
[SLA KPI],
SUMX(
FILTER(
TableName,
TableName[Month]=EARLIER(TableName[Month])
),
TableName[[SLA KPI]]
)
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 32 | |
| 31 | |
| 18 | |
| 12 | |
| 11 |