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
sumitnegi1266
Frequent Visitor

How to insert rows in Power BI Matrix to show minimum and maximum values

Hi,

I have below data and need to display extra rows showing minimum and maximum for each set. I am also using company slicer, so if company A and Company B are selected, it should show minimum and maximum as per the data filtered in Power BI matrix.

 

My Data:

sumitnegi1266_0-1693719138202.png

 

Expected Output:

sumitnegi1266_1-1693719158105.png

 

1 ACCEPTED SOLUTION

try this

https://1drv.ms/u/s!AiUZ0Ws7G26Rijc76j-np9aWnkBQ?e=UqwSfU

 

Final = 
VAR _min =
    CALCULATE ( MIN ( 'Table'[Value] ), ALLSELECTED('Table'[Set] ) )
VAR _max =
    CALCULATE ( MAX ( 'Table'[Value] ), ALLSELECTED('Table'[Set] ) )
RETURN
    SWITCH (
        TRUE (),
       SELECTEDVALUE ( DimCompany[Company] ) = "Minimum", _min,
      SELECTEDVALUE ( DimCompany[Company] ) = "Maximum", _max,
        CALCULATE (
            [Sales],
            TREATAS ( VALUES ( DimCompany[Company] ), 'Table'[Company] )
        )
    )

 

 

View solution in original post

7 REPLIES 7
sumitnegi1266
Frequent Visitor

Thank you so much @Ahmedx, it works as expected now 🙂

sumitnegi1266
Frequent Visitor

@AhmedxThanks for sharing the pbix. The only issue with this is, when I select companies under Set 1, it should give the minimum and maximum from those selected companies. In the screenshot below, the minimum for Set 1 should be 10. Also, the min and max should appear only once.

sumitnegi1266_0-1693740762846.png

 

 

@Ahmedx It is still showing incorrect results. For company A and Company B selected, the maximum should be 30, but it is currently showing 50.

sumitnegi1266_0-1693826412885.png

 

everything shows correctly

Screenshot_1.png

try this

https://1drv.ms/u/s!AiUZ0Ws7G26Rijc76j-np9aWnkBQ?e=UqwSfU

 

Final = 
VAR _min =
    CALCULATE ( MIN ( 'Table'[Value] ), ALLSELECTED('Table'[Set] ) )
VAR _max =
    CALCULATE ( MAX ( 'Table'[Value] ), ALLSELECTED('Table'[Set] ) )
RETURN
    SWITCH (
        TRUE (),
       SELECTEDVALUE ( DimCompany[Company] ) = "Minimum", _min,
      SELECTEDVALUE ( DimCompany[Company] ) = "Maximum", _max,
        CALCULATE (
            [Sales],
            TREATAS ( VALUES ( DimCompany[Company] ), 'Table'[Company] )
        )
    )

 

 

Ahmedx
Super User
Super User

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

https://1drv.ms/u/s!AiUZ0Ws7G26RijYWQyfB8iSBT4ef?e=XiaJWg

 

Helpful resources

Announcements
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.

June 2025 community update carousel

Fabric Community Update - June 2025

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