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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
troyel
Advocate II
Advocate II

Show max and min from a filtered list as KPI

Hi,

I have a data set where I have numerator and denominators in different columns (and rows) for different projects. 

 

I use a measure to calculate the resulting percentage of these figures. ((SUM(Table[Numerator])/SUM(Table[Denominator])))

 

Currently when I view these results they are just the sum of all projects numerator divided by the sum of all projects denominator. What I want to get are the max, min and average of these - for each project as a KPI/single figure. How can I do this? See example data set in excel.

 

Thanks!

 

Results I want in the measure is highligted in yellow:
Example

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @troyel,

 

You can try to use below formulas if it suitable for your requirement.

 

Summary table and calculate the percent:

Summary =
ADDCOLUMNS (
    SUMMARIZE (
        Table1,
        [Project],
        "Value", SUM ( Table1[Value] ),
        "Denominator", SUM ( Table1[Denominator] )
    ),
    "Percent", [Value] / [Denominator]
)

2.PNG

 

Measures:

AVG=AVERAGE(Summary[Percent])
MAX=MAX(Summary[Percent])
MIN=MIN(Summary[Percent])

3.PNG

 

Regards,

Xiaoxin Sheng

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

HI @troyel,

 

You can try to use below formulas if it suitable for your requirement.

 

Summary table and calculate the percent:

Summary =
ADDCOLUMNS (
    SUMMARIZE (
        Table1,
        [Project],
        "Value", SUM ( Table1[Value] ),
        "Denominator", SUM ( Table1[Denominator] )
    ),
    "Percent", [Value] / [Denominator]
)

2.PNG

 

Measures:

AVG=AVERAGE(Summary[Percent])
MAX=MAX(Summary[Percent])
MIN=MIN(Summary[Percent])

3.PNG

 

Regards,

Xiaoxin Sheng

 

Ah -  I had not considered creating a separate table to do this. Smart - thank you!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.

Top Solution Authors