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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
alinamarinbadea
Frequent Visitor

Compare values from two dynamically selected columns

Hello! I am stuck with the following task:

 

I have a much bigger version of this sample table:

 

AttributeProduct 1Product 2Product 3Product 4
Length13124532
Width2332112
Height1551211
UoM Dimensionmmmmmmmm
Net Weight25242521
Gross Weight41254150
UoM Weightgggg

 

The task is to compare determine difference between the values for two dynamically selected products. 

 

Steps I have taken: 

1. I have duplicated my table

2. Created a relationship 1 to 1 between the two tables using the Attribute column

3. I have created 2 parameters 

Select Product A = {
    ("Product 1", NAMEOF('Table'[Product 1]), 0),
    ("Product 2", NAMEOF('Table'[Product 2]), 1),
    ("Product 3", NAMEOF('Table'[Product 3]), 2),
    ("Product 4", NAMEOF('Table'[Product 4]), 3)
 
And 
 
Select Product B = {
    ("Product 1", NAMEOF('Table 2'[Product 1]), 0),
    ("Product 2", NAMEOF('Table 2'[Product 2]), 1),
    ("Product 3", NAMEOF('Table 2'[Product 3]), 2),
    ("Product 4", NAMEOF('Table 2'[Product 4]), 3)
}
4. Created a table visual where I have added Attribute, Select Product A and Select Product B and the result is the desired one. 
 
Now, I would like to create a measure or a calculated column that would calculate the difference in percentages between the values on each row for the products selected in the slicers (single select). If the value is not a number, "-" must be displayed
 
Appreciate any help I could get.
 
Thank you!
 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, @alinamarinbadea 

Thanks for amitchandak's reply. You can try the way from the link, or try to change the data model and then use the following dax.

vyaningymsft_2-1730093415508.png

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8knNSy/JUNJRMjQGEUZAwsQUSBgbKcXqRCuFZ6aAZY2MIWJAJYYgLljSIzUzPaMEJAbSYQrTD1QBkg3N91VwycxNzSvOzM8DCufmohMgVX6pJQrhMHOMQGYYmcBZEIPci/KLixGKTAxh8mCWqQHcNriSdBQcGwsA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Attribute = _t, #"Product 1" = _t, #"Product 2" = _t, #"Product 3" = _t, #"Product 4" = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Attribute", type text}, {"Product 1", type text}, {"Product 2", type text}, {"Product 3", type text}, {"Product 4", type text}}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Attribute"}, "Attribute.1", "Value"),
    #"Renamed Columns" = Table.RenameColumns(#"Unpivoted Columns",{{"Attribute.1", "Product"}}),
    #"Filtered Rows" = Table.SelectRows(#"Renamed Columns", each ([Value] <> "g" and [Value] <> "mm")),
    #"Changed Type1" = Table.TransformColumnTypes(#"Filtered Rows",{{"Value", Int64.Type}})
in
    #"Changed Type1"
First Product = 
VAR _min =
    CALCULATE (
        SELECTEDVALUE ( 'Product'[Value] ),
        FILTER ( 'Product', 'Product'[Product] = MIN ( 'Product'[Product] ) )
    )
RETURN
    _min

Second Product =
VAR _max =
    CALCULATE (
        SELECTEDVALUE ( 'Product'[Value] ),
        FILTER ( 'Product', 'Product'[Product] = MAX ( 'Product'[Product] ) )
    )
RETURN
    _max

diff % = 
VAR _firstProduct =
    CALCULATE (
        SELECTEDVALUE ( 'Product'[Value] ),
        FILTER ( 'Product', 'Product'[Product] = MIN ( 'Product'[Product] ) )
    )
VAR _secondProduct =
    CALCULATE (
        SELECTEDVALUE ( 'Product'[Value] ),
        FILTER ( 'Product', 'Product'[Product] = MAX ( 'Product'[Product] ) )
    )
RETURN
    DIVIDE ( _secondProduct, _firstProduct )

 

Best Regards,
Yang

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know.
Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi, @alinamarinbadea 

Thanks for amitchandak's reply. You can try the way from the link, or try to change the data model and then use the following dax.

vyaningymsft_2-1730093415508.png

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8knNSy/JUNJRMjQGEUZAwsQUSBgbKcXqRCuFZ6aAZY2MIWJAJYYgLljSIzUzPaMEJAbSYQrTD1QBkg3N91VwycxNzSvOzM8DCufmohMgVX6pJQrhMHOMQGYYmcBZEIPci/KLixGKTAxh8mCWqQHcNriSdBQcGwsA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Attribute = _t, #"Product 1" = _t, #"Product 2" = _t, #"Product 3" = _t, #"Product 4" = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Attribute", type text}, {"Product 1", type text}, {"Product 2", type text}, {"Product 3", type text}, {"Product 4", type text}}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Attribute"}, "Attribute.1", "Value"),
    #"Renamed Columns" = Table.RenameColumns(#"Unpivoted Columns",{{"Attribute.1", "Product"}}),
    #"Filtered Rows" = Table.SelectRows(#"Renamed Columns", each ([Value] <> "g" and [Value] <> "mm")),
    #"Changed Type1" = Table.TransformColumnTypes(#"Filtered Rows",{{"Value", Int64.Type}})
in
    #"Changed Type1"
First Product = 
VAR _min =
    CALCULATE (
        SELECTEDVALUE ( 'Product'[Value] ),
        FILTER ( 'Product', 'Product'[Product] = MIN ( 'Product'[Product] ) )
    )
RETURN
    _min

Second Product =
VAR _max =
    CALCULATE (
        SELECTEDVALUE ( 'Product'[Value] ),
        FILTER ( 'Product', 'Product'[Product] = MAX ( 'Product'[Product] ) )
    )
RETURN
    _max

diff % = 
VAR _firstProduct =
    CALCULATE (
        SELECTEDVALUE ( 'Product'[Value] ),
        FILTER ( 'Product', 'Product'[Product] = MIN ( 'Product'[Product] ) )
    )
VAR _secondProduct =
    CALCULATE (
        SELECTEDVALUE ( 'Product'[Value] ),
        FILTER ( 'Product', 'Product'[Product] = MAX ( 'Product'[Product] ) )
    )
RETURN
    DIVIDE ( _secondProduct, _firstProduct )

 

Best Regards,
Yang

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know.
Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

amitchandak
Super User
Super User

@alinamarinbadea , refer to this example. You need one of the table as an independent table

 

Compare Categorical Data Using Slicers - Compare two Brands: https://youtu.be/exN4nTewgbc

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