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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Here's a screenshot of my dashboard, I need the Variance Visual to not calculate April 2022 onwards since it is not yet "Today" date. Please help. Thank you.
Solved! Go to Solution.
@remespinosa , You can create a measure like this and use in visual or use this as visual level filter check for nonblank
if(max('Date'[Date]) >eomonth( today(),0) , blank() ,[Measure])
Thanks for this!
@remespinosa , You can create a measure like this and use in visual or use this as visual level filter check for nonblank
if(max('Date'[Date]) >eomonth( today(),0) , blank() ,[Measure])