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
Sow-1
New Member

conditional formatting

I have created a matrix table with planned and available columns. With the selection of slicer, matrix table shows the data in hours and %.

I need to put the conditional formatting for planned column in matrix table like-

if hours is >8 then red else no color.

if % is >100 then red else no color.

this is for daily data.

There is also a condition that if this matrix table is drill up to weekly then

if hours is >40 should be red else no color.

if % is >100 for a week then it should be in red.

There is also a condition that if this matrix table is drill up to monthly then

if hours is >160 should be red else no color.

if % is >100 for a week then it should be in red.

4 REPLIES 4
v-zhangtin-msft
Community Support
Community Support

Hi, @Sow-1 

 

Have you solved your problem? If not, please provide some of the example data. Please remove sensitive data in advance. How to provide sample data in the Power BI Forum - Microsoft Fabric Community

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

anmolmalviya05
Super User
Super User

please try below measure:

Planned_ConditionalFormat =
VAR CurrentLevel = SELECTEDVALUE('Date'[Hierarchy Level])
VAR PlannedHours = SELECTEDVALUE('MatrixTable'[Planned_Hours])
VAR PlannedPercent = SELECTEDVALUE('MatrixTable'[Planned_Percent])

-- Define thresholds
VAR ThresholdHours =
SWITCH(
CurrentLevel,
"Day", 8,
"Week", 40,
"Month", 160
)
VAR IsRed_Hours = IF(PlannedHours > ThresholdHours, 1, 0)
VAR IsRed_Percent = IF(PlannedPercent > 100, 1, 0)

RETURN
IF(IsRed_Hours || IsRed_Percent, 1, 0)

Create this measure

Condition_Daily_Data =
SWITCH(TRUE(),
SUM(ConditionalFormatting[Hours])>8,1,
SUM(ConditionalFormatting[%])>100,1,0)
 
Then apply conditional formatting using the rules in format style.Ajithkumar_P_05_1-1733293188794.pngAjithkumar_P_05_2-1733293217361.png

Create a flag using your condition and apply a color.

Kedar_Pande
Super User
Super User

@Sow-1 

Measure:

Drill Level = 
SWITCH(
TRUE(),
ISINSCOPE('Date'[Date]), "Daily",
ISINSCOPE('Date'[Week]), "Weekly",
ISINSCOPE('Date'[Month]), "Monthly",
BLANK()
)
Format Planned = 
VAR CurrentLevel = [Drill Level]
VAR Hours = SUM('Table'[Planned Hours])
VAR Percent = SUM('Table'[Planned %])
RETURN
SWITCH(
TRUE(),
CurrentLevel = "Daily" && Hours > 8, 1,
CurrentLevel = "Daily" && Percent > 100, 1,
CurrentLevel = "Weekly" && Hours > 40, 1,
CurrentLevel = "Weekly" && Percent > 100, 1,
CurrentLevel = "Monthly" && Hours > 160, 1,
CurrentLevel = "Monthly" && Percent > 100, 1,
0
)

Use the Format Planned measure in Conditional Formatting for the Planned column in the matrix visual. Set formatting rules where 1 applies red color and 0 applies no color.

 

💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn

 

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! Prices go up Feb. 11th.

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.

Jan NL Carousel

Fabric Community Update - January 2025

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