The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!