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
Anonymous
Not applicable

Conditionnal formating per line in a matrice

Hello, 

I need help with conditionnal formating on a matrice. I have a matrice with 4 lines (duration) and 4 columns (years), I need to do a different conditionnal formating for each line of the matrice. For example : for the first line all figures above 3 are red, for the second line all figures above 3 are green ...

Is it possible ? 

Thank you for your help !

 

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

Hi @Anonymous ,

 

First we create a measure to define the color, then using this measure to formatting condition as field value, you can change the DAX to meet your requirement, the outter SWITCH() control the line condition and the inner control different color format in line.

 

Color = 
SWITCH (
    SELECTEDVALUE ( 'Table'[Duration] ),
    "Autumn", SWITCH (
        TRUE (),
        SUM ( 'Table'[Value] ) >= 3, "#FF0000",
        SUM ( 'Table'[Value] ) < 3, "0000FF"
    ),
    "Spring", SWITCH (
        TRUE (),
        SUM ( 'Table'[Value] ) >= 3, "#00FF00",
        SUM ( 'Table'[Value] ) < 3, "0000FF"
    )
)

Conditionnal-formating-per-line-in-a-matrice-1.pngConditionnal-formating-per-line-in-a-matrice-2.pngConditionnal-formating-per-line-in-a-matrice-3.png

 

BTW, pbix as attached.

 

Community Support Team _ DongLi
If this post helps, then please consider Accept it as the solution to help the other members find it more

Community Support Team _ Dong Li
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-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

First we create a measure to define the color, then using this measure to formatting condition as field value, you can change the DAX to meet your requirement, the outter SWITCH() control the line condition and the inner control different color format in line.

 

Color = 
SWITCH (
    SELECTEDVALUE ( 'Table'[Duration] ),
    "Autumn", SWITCH (
        TRUE (),
        SUM ( 'Table'[Value] ) >= 3, "#FF0000",
        SUM ( 'Table'[Value] ) < 3, "0000FF"
    ),
    "Spring", SWITCH (
        TRUE (),
        SUM ( 'Table'[Value] ) >= 3, "#00FF00",
        SUM ( 'Table'[Value] ) < 3, "0000FF"
    )
)

Conditionnal-formating-per-line-in-a-matrice-1.pngConditionnal-formating-per-line-in-a-matrice-2.pngConditionnal-formating-per-line-in-a-matrice-3.png

 

BTW, pbix as attached.

 

Community Support Team _ DongLi
If this post helps, then please consider Accept it as the solution to help the other members find it more

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.