Hi Guys
I am trying to create repeating section to create multiple SP list items.
But somehow, last line kept creating & duplicating in SP list.
Could you please help me...?
Screen - SP
Screen - Repeating Section
Icon Submit Code
ForAll(
Gallery1.AllItems,
Patch(
InvoiceLineDetail,
{
Title: [@TextInput1].Text,
LineNo:Value([@TextInput1_1].Text),
CostCenter:[@ComboBox2].Selected.Value,
LineDesc:[@TextInput1_3].Text,
LineAmount:Value([@TextInput1_4].Text),
FTE: Value([@TextInput1_5].Text)
}
)
);
Icon Add line Code
Collect(
invDtlCollection,
{
InvoiceNo: Text(DataCardValue3),
LineNo: Text(CountRows(invDtlCollection)+1),
CostCenter: ComboBox2.Selected.Value,
LineDesc: "",
LineAmount:"" ,
FTE:""
}
)
Thank you.


Report
All responses (
Answers (