Hello,
I have a records with a start date and an end date. I want to split it as follows in the transform node:

The following code is not working:
count = 0
while count < NumMonths :
out1 += in1
count += 1
I am do not know how to split a record into multiple records.
I can figure out the start and end date logic by myself.
Any suggestions?