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.
Hi, hope everyone is having an awesome day. I would like to know how to exclude future months and years when applying conditional formatting to a matrix visual.
Does anyone know how to do this in Power BI? Any help or guidance would be greatly appreciated!
Thank you in advance.
Solved! Go to Solution.
@ronaldbalza2023 , Based on your measure,
a new measure like this should
if(max(Date[Date]) > eomonth(today(),0) , [Measure], blank())
Do not color the blank value
@ronaldbalza2023 , Based on your measure,
a new measure like this should
if(max(Date[Date]) > eomonth(today(),0) , [Measure], blank())
Do not color the blank value