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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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]]
)
)
User | Count |
---|---|
11 | |
9 | |
6 | |
5 | |
4 |