Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi all,
I want to put some more complex filters on the matrix visual.
Basically I want to only show
1) Avg Pos > 0. All those " - " in this column, I don't want them to show in the visual but I don't know how to do this.
OR
2) Pos % Change > 0.1 or < -0.1. -> This is already achieved by setting the filter in the picture.
Here are the DAX calculation for all those columns in the matrix:
Avg Pos =
IF(
ISBLANK(
AVERAGE('GSC query analysis'[Position])
),
"-",
AVERAGE('GSC query analysis'[Position])
)
Prev Month Avg Pos =
CALCULATE(
[Avg Pos],
DATEADD(
'Calendar Lookup'[Start of Month],
-1,
MONTH
)
)
Pos % Change =
IFERROR(
([Avg Pos] - [Prev Month Avg Pos]) / [Prev Month Avg Pos],
"-"
)
You help is much appreciated!!
Solved! Go to Solution.
I have got it work myself by changing the DAX Calculation:
Avg Pos (Outliers) =
AVERAGE('GSC query analysis'[Position])Prev Month Avg Pos (Outliers) =
CALCULATE(
[Avg Pos (Outliers)],
DATEADD(
'Calendar Lookup'[Start of Month],
-1,
MONTH
)
)Pos % Change =
IFERROR(
([Avg Pos] - [Prev Month Avg Pos]) / [Prev Month Avg Pos],
"-"
)And set the filter
I have got it work myself by changing the DAX Calculation:
Avg Pos (Outliers) =
AVERAGE('GSC query analysis'[Position])Prev Month Avg Pos (Outliers) =
CALCULATE(
[Avg Pos (Outliers)],
DATEADD(
'Calendar Lookup'[Start of Month],
-1,
MONTH
)
)Pos % Change =
IFERROR(
([Avg Pos] - [Prev Month Avg Pos]) / [Prev Month Avg Pos],
"-"
)And set the filter
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 70 | |
| 55 | |
| 38 | |
| 28 | |
| 22 |
| User | Count |
|---|---|
| 133 | |
| 119 | |
| 54 | |
| 37 | |
| 31 |