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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I have a calendar table wheres date, year, month, day and I want a column that shows what days are past = 0 and todays day = 1.
I have this formulas:
Solved! Go to Solution.
You can add a column like
Is Current Day =
IF ( Kalender[Datum] = TODAY (), 1, 0 )
You can add a column like
Is Current Day =
IF ( Kalender[Datum] = TODAY (), 1, 0 )
It works. Thank you!