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.
So quite simply I want to be able to slice/move "Now" to 3, 6, 9 months into the future. I have a bunch of products that have fixed expiration dates and I am trying to show how bad the situation will be in 3 months time etc.
All time functions seem to be based on if x then y. My data is static, the variable I would like to play with is (Now)
(do you slice (today)? not (Now)??)
Solved! Go to Solution.
Perhaps something like:
Measure = VAR __now = NOW() RETURN DATE(YEAR(__now),MONTH(__now)+3,DAY(__now))
Hi @sinonthenet,
Have you solved the problem?
If you have solved, please accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you need help, could you share some data sample and your desired output so that we could help further on it?
Best Regards,
Cherry
Perhaps something like:
Measure = VAR __now = NOW() RETURN DATE(YEAR(__now),MONTH(__now)+3,DAY(__now))
Huge thanks gives us our starting point needed. Evidentally we need to learn more about DAX formula!