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!View all the Fabric Data Days sessions on demand. View schedule
Hi All
I have a field name = Closing Date.
I am able to filter Closing date > today :-
Solved! Go to Solution.
Hi @admin11
Try this:
_Deal > Today =
Var _Today =TODAY()
Var _Today_90 = _Today+90
return
IF ('CRM_TS'[Closing Date] >=_Today_90 , 1, 0)
If you want to add 1 for all dates from today to 90 days later, then try this:
_Deal > Today =
Var _Today =TODAY()
Var _Today_90 = _Today+90
return
IF ('CRM_TS'[Closing Date] >=_Today&&'CRM_TS'[Closing Date] <=_Today_90 , 1, 0)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @admin11
Try this:
_Deal > Today =
Var _Today =TODAY()
Var _Today_90 = _Today+90
return
IF ('CRM_TS'[Closing Date] >=_Today_90 , 1, 0)
If you want to add 1 for all dates from today to 90 days later, then try this:
_Deal > Today =
Var _Today =TODAY()
Var _Today_90 = _Today+90
return
IF ('CRM_TS'[Closing Date] >=_Today&&'CRM_TS'[Closing Date] <=_Today_90 , 1, 0)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi @admin11 ,
Please try this:
_Deal > Today_next90day = IF ('CRM_TS'[Closing Date] >= TODAY() & 'CRM_TS'[Closing Date] >90day, 1, 0)
If it works, please mark it as a solution. Thank you.
Regards,
TruptiS
Thnak you very much for your help.
i Get below error :-
DAX comparison operations do not support comparing values of type Date with values of type Text. Consider using the VALUE or FORMAT function to convert one of the values.
We need to convert closing date column into a number so that we can see if it falls under 90 days. Try using DATESINPERIODS function.
Regards,
Truptis
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!