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.
Hi Experts
My next Appointmwnt date column in my FACT Table is of the format 25/12/2022 (dd/mm/yyyy) i wan to create a new column in the table where if the date is 25/12 and 01/01 then 1 else zero.
what is the dax please
Solved! Go to Solution.
HI @Anonymous ,
I think you mean OR instead of AND right?
The formula would be:
Formula =
IF(
OR(
DAY(DimDate[Date]) = 25 && MONTH(DimDate[Date]) = 12,
DAY(DimDate[Date]) = 1 && MONTH(DimDate[Date]) = 1
),
1,
0
)
Result
Best regards
Michael
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your kudos.
@ me in replies or I'll lose your thread.
Aweseome! Thank you for your feedback1 🙂
Aweseome! Thank you for your feedback1 🙂
HI @Anonymous ,
I think you mean OR instead of AND right?
The formula would be:
Formula =
IF(
OR(
DAY(DimDate[Date]) = 25 && MONTH(DimDate[Date]) = 12,
DAY(DimDate[Date]) = 1 && MONTH(DimDate[Date]) = 1
),
1,
0
)
Result
Best regards
Michael
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your kudos.
@ me in replies or I'll lose your thread.
Excellent thank you for the feedback