There are often multiple ways to dal with an issue in Power BI. Dates are stored internally as numbers, so you can just use simple math to generate whatever you want. Here’s a measure that calculates the date 1000 weeks into the future:
Future Date =
VAR _Today = TODAY()
VAR _Result = _Today + ( 1000 * 7 )
RETURN
_Result
Due to inactivity, a response on this post has been tagged as “Solution”.
If you have a follow question or concern related to this topic, please remove the Solution tag first by clicking the three dots beside Reply and then untick the check box.