March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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 !
Solved! Go to Solution.
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" ) )
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
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" ) )
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |