Create new records based on data and system date values
Assume the following dataset
Set NullInterpret = '';
Let vCurrentDate = Num(Date(Today()));
Data:
Load * Inline [
Id,StartDate,EndDate
1, 01-01-2019,
2, 25-01-2020, 27-08-2020
3, 01-01-2020,
];
What I try to achieve is creating a new "monthly" record for each record untill an EndDate is hit. So ID 2 will have 8 repeats, while ID 1 and 3 continue till vCurrentDate.