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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
scabral
Helper IV
Helper IV

table showing min, median, and max

wondering if the following is possible to do in power bi:

 

results.PNG

 

i have a table with all of our clients with colunns for Client Reported Value and Combined Ratio.  I need to display the Min, Median, and Max for each column in the table as shown above.

 

thanks

Scott

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @scabral ,

I created some data:

vyangliumsft_0-1638495531238.png

Here are the steps you can follow:

1. Use Enter data to create a table.

vyangliumsft_1-1638495531240.png

2. Create measure.

Client_Max = MAXX(ALL('Table'),'Table'[Client reported value])
Client_Media = MEDIANX(ALL('Table'),'Table'[Client reported value])
Client_Min =
MINX(ALL('Table'),'Table'[Client reported value])
Com_Max =
MAXX(ALL('Table'),'Table'[Combined Ratio])
Com_Media =
MEDIANX(ALL('Table'),'Table'[Combined Ratio])
Com_Min =
MINX(ALL('Table'),'Table'[Combined Ratio])
Measure_Client report value =
SWITCH(
    TRUE(),
    MAX( Table2[Group])="Max",[Client_Max],
    MAX( Table2[Group])="Min",[Client_Min],
    MAX( Table2[Group])="Median",[Client_Media])
Measure_Combined Ratio =
SWITCH(
    TRUE(),
    MAX( Table2[Group])="Max",[Com_Max],
    MAX( Table2[Group])="Min",[Com_Min],
    MAX( Table2[Group])="Median",[Com_Media])

3. In Power query, Add Column – Index Column From 1.

vyangliumsft_2-1638495531243.png

4. Select [Group] of Table2, click Column tools – Sort by – Index

vyangliumsft_3-1638495531244.png

5. Result:

vyangliumsft_4-1638495531245.png

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @scabral ,

I created some data:

vyangliumsft_0-1638495531238.png

Here are the steps you can follow:

1. Use Enter data to create a table.

vyangliumsft_1-1638495531240.png

2. Create measure.

Client_Max = MAXX(ALL('Table'),'Table'[Client reported value])
Client_Media = MEDIANX(ALL('Table'),'Table'[Client reported value])
Client_Min =
MINX(ALL('Table'),'Table'[Client reported value])
Com_Max =
MAXX(ALL('Table'),'Table'[Combined Ratio])
Com_Media =
MEDIANX(ALL('Table'),'Table'[Combined Ratio])
Com_Min =
MINX(ALL('Table'),'Table'[Combined Ratio])
Measure_Client report value =
SWITCH(
    TRUE(),
    MAX( Table2[Group])="Max",[Client_Max],
    MAX( Table2[Group])="Min",[Client_Min],
    MAX( Table2[Group])="Median",[Client_Media])
Measure_Combined Ratio =
SWITCH(
    TRUE(),
    MAX( Table2[Group])="Max",[Com_Max],
    MAX( Table2[Group])="Min",[Com_Min],
    MAX( Table2[Group])="Median",[Com_Media])

3. In Power query, Add Column – Index Column From 1.

vyangliumsft_2-1638495531243.png

4. Select [Group] of Table2, click Column tools – Sort by – Index

vyangliumsft_3-1638495531244.png

5. Result:

vyangliumsft_4-1638495531245.png

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

amitchandak
Super User
Super User

@scabral , This is measure to measure to dimension split. You need to have a table with all required filters of view by and use that in visual

 

union(
summarize('Table',"Measure","Client Report Value","Min",[Min Client Report Value],"Median",[MedianClient Report Value],"Max",[MaxClient Report Value]),
summarize('Table',"Measure","Combined Ratio","Min",[Min Combined Ratio],"Median",[MedianCombined Ratio],"Max",[Max Combined Ratio])
)

 

Assume already have these measures

 

Similar example

union(
summarize('Table',"Measure","Min","Test1",min('Table'[Test1]),"Test2",min('Table'[Test2]),"Test3",min('Table'[Test3]))
summarize('Table',"Measure","Max","Test1",max('Table'[Test1]),"Test2",max('Table'[Test2]),"Test3",max('Table'[Test3]))
)
"QTD" , "YTD" , "MTD"

union(
summarize('Table',"Measure","sales","This period",[SALES YTD],"Last period",[SALES LYTD],"POP",[SALES YOY])
summarize('Table',"Measure","unit","This period",[unit YTD],"Last period",[unit LYTD],"POP",[unit YOY])
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.