Forum Discussion
Filter Column in PowerBI Matrix visual by Measure filter
Hi guys,
it seems something relativtly basic in my brain, you can filter rows without a problem by using the filter pane and a measure, but I was not able to filter the column by a measure, simply will not do anything.
I am looking at the measure DevMoM. It will calculate the variation between the figures in the column "Current CNS" - "Previous CNS", and for all the rest of the column will result in BLANK()
I don't understand why the columns don't get filtered out when I tell DevMoM <>Blank or greater than 0 or lower than 0.
Thanks who can help!
1 Reply
- amitchandakSuper User
riccardoprade93 , Based on what I got try like
IF (
PF2 = "Actuals 2022" || PF2 = "Budget 23 R3" || PF2 = "Base Fcst WD7" || PF2 = "Consensus Lag0" || PF2 = "Next 12M" || PF2 = "Previous CNS",
BLANK(),
Cur1 - Pas1
)