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]]
)
)
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 | |
| 11 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 29 | |
| 21 | |
| 12 | |
| 12 |