I'm trying to create a list of dates between Start and End
The first date should be input.Start
The last date should be < = input.End
The remaining dates should be 28 days apart
fourWeeks = list:Date(input.Start.addDay(28));
gives me an error:
Expecting TIMESTAMPLIST expression found TIMESTAMP expression
thanks in advance