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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
i have a table that has non continuous dates, so i created a summarized table to see what are my dates. i want to create a column with the next availbale date, like below:
Thanks
Solved! Go to Solution.
want =
var h = [have]
return calculate(max([have]), all(),[have]<h)
Note that performance will be bad with millions of rows but should be ok with your date column.
Please indicate if you want this in Power Query or DAX.
want =
var h = [have]
return calculate(max([have]), all(),[have]<h)
Note that performance will be bad with millions of rows but should be ok with your date column.