The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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])