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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-yangliu-msft
Community Support
Community Support

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
v-yangliu-msft
Community Support
Community Support

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])
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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