Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi everyone,
I need help doing some visual filter on matrix across multiple columns. (please see below screenshot)
If [Sum Clicks] and [Prev Month Sum Clicks] are both 0 at the same time (MUST be both 0 at the same time), I don't want it to show in the matrix. How do I do that?
Both columns are measures. Including the Dax Calculation here if that helps:
Sum Clicks =
IF(
ISBLANK(
SUM('GSC query analysis'[Clicks])
),
0,
SUM('GSC query analysis'[Clicks])
)
Prev Month Sum Clicks =
CALCULATE(
[Sum Clicks],
DATEADD(
'Calendar Lookup'[Start of Month],
-1,
MONTH
)
)
Your help is much appreciated!!
Solved! Go to Solution.
Try:
Sum clicks not 0 =
IF(AND([Sum clicks] ==0, [Prev Month Sum Clicks] ==0), BLANK(), [Sum Clicks])
Prev Month Sum clicks not 0 =
IF(AND([Sum clicks] ==0, [Prev Month Sum Clicks] ==0), BLANK(), [Prev Month Sum Clicks])
Proud to be a Super User!
Paul on Linkedin.
Try:
Sum clicks not 0 =
IF(AND([Sum clicks] ==0, [Prev Month Sum Clicks] ==0), BLANK(), [Sum Clicks])
Prev Month Sum clicks not 0 =
IF(AND([Sum clicks] ==0, [Prev Month Sum Clicks] ==0), BLANK(), [Prev Month Sum Clicks])
Proud to be a Super User!
Paul on Linkedin.
This method works!! Thank you so much!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.