try this formula
var date Start = Date(2020,8,18);
var date End = Date(2020,9,5);
List("\n",
ToText($Start),
If($Start + Days(1)<= $End, ToText($Start + Days(1))),
If($Start + Days(2)<= $End, ToText($Start + Days(2))),
If($Start + Days(3)<= $End, ToText($Start + Days(3)))
)
Replace the hard coded Start and End with the dates from your app. Continue pattern for as long a range as your app needs to handle.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.commark.shnier@gmail.com
------------------------------