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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi there ;
İ just want to create a new formula but i can nat create because i am very new at DAX .
Coluld you pls help me about below issue , thanks for your supports.
Issue :
I have one column with dates as below.İ want to see that , if the date column's date is after this month ( the month that we are in) , it will write to near cell "true" in number column.İf not the cell will be empty in new column.
İ want like that :
Solved! Go to Solution.
Hi,
Just add a calculated column and use that DAX formula :
Number =
IF(AND(MONTH(Table1[Date])>MONTH(NOW()),YEAR(Table1[Date])>=YEAR(NOW())),"TRUE",BLANK())
Hi,
Just add a calculated column and use that DAX formula :
Number =
IF(AND(MONTH(Table1[Date])>MONTH(NOW()),YEAR(Table1[Date])>=YEAR(NOW())),"TRUE",BLANK())
Hi drors ;
I am very glad to see your reply , and it is working .
Thank you very much for support.