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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
klopdaddy
Regular Visitor

Conditional Formatting in a Matrix Visual- Comparing Weekly data to summarized data

Hello-

I am trying to conditionally format values in cells of a matrix visual based on the summarization of the entire range of cells. In my specific case the columns of the matrix visual are weeks of the year which i want to compare vs. the Standard Deviation across the entire range of data and color code highlight if the value in the cell is outside the stad dev.

klopdaddy_1-1709397716353.png

 

The measure that ive created to calculate the std dev across the range is:

 

stddv_time_bound = CALCULATE(

    STDEVX.S(

SUMMARIZE( table1,   table1[week], "Change",

     CALCULATE(

SUM(table1[sum(column_values)]), table1[column_names] = "forecast 1")

      -

      CALCULATE(

SUM(table1[sum(column_values)]), table1[column_names] = "forecast2")

),

     [Change]),

DATESINPERIOD(table1[week], TODAY(), 12, MONTH), All(table1[week]))

 

And i use this in the below measure to create the color coding.

Color Code = SWITCH(TRUE(),

[Change Forecast] >= [stddev_time_bound],"#de6a73",

 "#B7e8a2")

 

The issue is that the std. dev measure is applied in the visual against only each indidual week which returns NaN due to no variability. 

IS there a way to remove the inherent filter applied by the visual?

 

Thanks in advance for any help

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Read about HASONEVALUE and REMOVEFILTERS

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

Read about HASONEVALUE and REMOVEFILTERS

Very helpful. Thank you

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.