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.
I have a date column( Date Week Ending) . As my table has future dates , when i am adding this "Date week ending" to my Slicer, it is displaying Future dates also. But i want to limit this to current week ending date. Only wanted to add filters/Condition to my Dax.
The below is my date column:
Solved! Go to Solution.
Hi @Anonymous ,
Based on my test, you could refer to below formula:
Related date = IF([Date]>TODAY(),BLANK(),[Date])
Result:
Regards,
Daniel He
Hi @Anonymous ,
Based on my test, you could refer to below formula:
Related date = IF([Date]>TODAY(),BLANK(),[Date])
Result:
Regards,
Daniel He