Hello All,
I don’t think this is possible (though it would REALLY make my life better if it is).
Is there a way to create a group from a date range parameter?
I need to create a group that displays each day starting on a {?StartDate} date parameter and ending on a {?EndDate}date parameter.
This is what I’ve got so far but it’s not working.
Code:
Whilereadingrecords;
Local DateVar myDate := {?StartDate};
//@datediff = {?EndDate} - {? StartDate }
Local NumberVar myDateDiff := {@datediff};
Local NumberVar i;
For i := 1 To myDateDiff Do
(
myDate := CDate(DateAdd("d", i,{?start_date}))
);
myDate;
Many thanks to any/all replies!
- TL