Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Find the percentage Based on the selection of month value and Total of month value

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 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @Anonymous 

try to add a calculated column like:

Column =
DIVIDE(
    [SLA KPI],
    SUMX(
        FILTER(
            TableName,
            TableName[Month]=EARLIER(TableName[Month])
        ),
        TableName[[SLA KPI]]
    )
)

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@FreemanZ  thank you so much .it's working 

FreemanZ
Super User
Super User

hi @Anonymous 

try to add a calculated column like:

Column =
DIVIDE(
    [SLA KPI],
    SUMX(
        FILTER(
            TableName,
            TableName[Month]=EARLIER(TableName[Month])
        ),
        TableName[[SLA KPI]]
    )
)

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.