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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Tobz007
Frequent Visitor

Matrix Table Background Conditional Formatting

Hello Community,
I have a matrix table that uses a parameter for the rows, the parameter contains 4 hierachies. The columns are based on weeks e.g Jan 1 - 7, Jan 8 - 15, etc. I am trying to conditionally format the background colour for the last hierachy (let's call it "Project") if the value satify certain conditions in the columns. So if the Project starts in one of the weeks in the column, the background is formatted to a certain colour, if the Project ends in one of the weeks, the background is formatted to another colour, and if the Project starts and ends in same week, the background if formatted to another colour. The problem I'm having now is that when a Project has a start date in one of the weeks (in the column) and the same Project has an end date in another week (in the column), only one of the field background gets formatted instead of the 2 fields that satisfy the condition. Please how do I fix this?

The current DAX I'm using is below.


Colour Format =

VAR rStart = MIN(Table[ResourceStart])
VAR rEnd = MIN(Table[ResourceEnd])

VAR weekStart = MIN(Table[WeekStart])
VAR weekEnd = MIN(Table[WeekEnd])

VAR rStartInWeek = rStart >= weekStart && rStart <= weekEnd
VAR rEndInWeek = rEnd >= weekStart && rEnd <= weekEnd

RETURN
SWITCH(
TRUE(),
rStartInWeek && rEndInWeek, "#FFA07A",
rStartInWeek, "#ADD8E6",
rEndInWeek, "#006884",
BLANK()
)

1 ACCEPTED SOLUTION
Tobz007
Frequent Visitor

For anyone interested in how I got it to work, this was the final DAX

Colour Format =

VAR rStart = SELECTEDVALUE(Table[ResourceStart])
VAR rEnd = SELECTEDVALUE(Table[ResourceEnd])

VAR weekStart = SELECTEDVALUE(Table[WeekStart])
VAR weekEnd = SELECTEDVALUE(Table[WeekEnd])


VAR _Result =
     SWITCH(
         TRUE(),
              rStart >= weekStart && rStart <= weekEnd && rEnd >= weekStart && rEnd <= weekEnd, "#FFA07A",
              rStart >= weekStart && rStart <= weekEnd , "#ADD8E6",
              rEnd >= weekStart && rEnd <= weekEnd , "#006884",
          " "
      )

RETURN
      _Result

View solution in original post

3 REPLIES 3
Tobz007
Frequent Visitor

For anyone interested in how I got it to work, this was the final DAX

Colour Format =

VAR rStart = SELECTEDVALUE(Table[ResourceStart])
VAR rEnd = SELECTEDVALUE(Table[ResourceEnd])

VAR weekStart = SELECTEDVALUE(Table[WeekStart])
VAR weekEnd = SELECTEDVALUE(Table[WeekEnd])


VAR _Result =
     SWITCH(
         TRUE(),
              rStart >= weekStart && rStart <= weekEnd && rEnd >= weekStart && rEnd <= weekEnd, "#FFA07A",
              rStart >= weekStart && rStart <= weekEnd , "#ADD8E6",
              rEnd >= weekStart && rEnd <= weekEnd , "#006884",
          " "
      )

RETURN
      _Result

DatawithDinesh
Resolver II
Resolver II

The issue you're encountering is likely due to the aggregation in the matrix. When you use MIN to calculate the start and end dates, it might not be accurately reflecting the multiple occurrences of a project that span different weeks. To address this, you need to ensure that each cell in the matrix is independently evaluated for the conditions you specify.

Here’s a revised approach that should help you achieve the desired formatting:

Colour Format = 
VAR rStart = SELECTEDVALUE(Table[ResourceStart])
VAR rEnd = SELECTEDVALUE(Table[ResourceEnd])

VAR weekStart = SELECTEDVALUE(Table[WeekStart])
VAR weekEnd = SELECTEDVALUE(Table[WeekEnd])

VAR rStartInWeek = rStart >= weekStart && rStart <= weekEnd
VAR rEndInWeek = rEnd >= weekStart && rEnd <= weekEnd

RETURN
SWITCH(
    TRUE(),
    rStartInWeek && rEndInWeek, "#FFA07A",  -- Start and End in the same week
    rStartInWeek, "#ADD8E6",                 -- Start in the week
    rEndInWeek, "#006884",                   -- End in the week
    BLANK()
)

Thanks alot Dinesh, I tried using SELECTEDVALUE as suggested but still having the same issue.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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