Hi All,
I wonder if this is possible i have a form and Repeating gallery all i need is when payment frequency dropdown is select monthly the repeating gallery should auto calculate and create 4 lines filled due dates for me at moment i am using this formula and it does creates for me lines :
Could you please try this?
1. Set App.OnStart: ClearCollect(ColNum,[1,2,3,4,5,6,7,8,9,10])
2. Modify the OnChange of Number Package Textinput box as below, it creates new rows repeatedly based on the values you enter.
ForAll(
FirstN(ColNum,Value(DataCardValue60_2.Text)),
Collect( NewShipCollection,
{CItemSerialNumber: Text(Last(NewShipCollection).CItemSerialNumber + 1),
Clevel: "",
Ctc: "",
Cdescription: ""
}))
also screenshot

