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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
joshua1990
Post Prodigy
Post Prodigy

Classify values into 3 groups

Hi experts!

I have a table that contains different values for each article for each week:

Date Amount Price Article Value 1 Value 2 Value 3
01.01.2024 500 4 A 1 2 3
01.02.2024 600 5 B 2 1 2

 

Now I would like to transpose these values into a matrix on the rows and then make them visible for each individual classification. These classifications are like:

  • Class 1: Value 1 below 2
  • Class 2: Value 2 below 2
  • Class 3: Value 3 and Value 1 above 0

In the end I would like to display this in the following way:

Article Date Measure Class 1 Class 2 Class 3
A 01.01.2024 Amount 500   500
A 01.01.2024 Price 4   4
B 01.02.2024 Amount   600  600
B 01.02.2024 Price     5  5

 

As you can see, the values for each measure get's displayed when the classification is true or false.

 

How would you do this?

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @joshua1990 ,

 

Here are the steps you can follow:

1. In power query – select [Amount] and []Price] – Transform – Unpivot Columns.

vyangliumsft_0-1693792730783.png

2. In power query – select [Value1], [Value2], [Value3]– Transform – Unpivot Columns.

vyangliumsft_1-1693792730786.png

3. Create measure.

Measure = 
SWITCH(
    TRUE(),
    OR(
    MAX('Table'[Article])="B"&&
    MAX('Table'[Attribute.1])="Value 1"&&MAX('Table'[Attribute])="Amount",
     MAX('Table'[Article])="B"&&
    MAX('Table'[Attribute.1])="Value 1"&&MAX('Table'[Attribute])="Price"),
    BLANK(),
    OR(
    MAX('Table'[Article])="A"&&
    MAX('Table'[Attribute.1])="Value 2"&&MAX('Table'[Attribute])="Amount",
     MAX('Table'[Article])="A"&&
    MAX('Table'[Attribute.1])="Value 2"&&MAX('Table'[Attribute])="Price"),
    BLANK(),
    MAX('Table'[Value]))

4. Matrix Visual – Fromat – Row headers – Options – stepped layout – set off.

vyangliumsft_2-1693792780150.png

5. Result:

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

1 REPLY 1
v-yangliu-msft
Community Support
Community Support

Hi  @joshua1990 ,

 

Here are the steps you can follow:

1. In power query – select [Amount] and []Price] – Transform – Unpivot Columns.

vyangliumsft_0-1693792730783.png

2. In power query – select [Value1], [Value2], [Value3]– Transform – Unpivot Columns.

vyangliumsft_1-1693792730786.png

3. Create measure.

Measure = 
SWITCH(
    TRUE(),
    OR(
    MAX('Table'[Article])="B"&&
    MAX('Table'[Attribute.1])="Value 1"&&MAX('Table'[Attribute])="Amount",
     MAX('Table'[Article])="B"&&
    MAX('Table'[Attribute.1])="Value 1"&&MAX('Table'[Attribute])="Price"),
    BLANK(),
    OR(
    MAX('Table'[Article])="A"&&
    MAX('Table'[Attribute.1])="Value 2"&&MAX('Table'[Attribute])="Amount",
     MAX('Table'[Article])="A"&&
    MAX('Table'[Attribute.1])="Value 2"&&MAX('Table'[Attribute])="Price"),
    BLANK(),
    MAX('Table'[Value]))

4. Matrix Visual – Fromat – Row headers – Options – stepped layout – set off.

vyangliumsft_2-1693792780150.png

5. Result:

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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.