// Add a new row
Collect(Col_AccessForm, {
'Source System Name': TextInput2.Text,
'Source IP-Address': TextInput2_2.Text,
'Destination System Name': TextInput2_3.Text,
'Destination IP-Address': TextInput2_4.Text,
'Destination Port/s': TextInput2_5.Text,
'VPN/Lease': TextInput2_6.Text
});
// Debugging: Display the contents of Col_AccessForm
Label1.Text = First(Col_AccessForm).'Source System Name';
Label2.Text = First(Col_AccessForm).'Source IP-Address';
Label3.Text = First(Col_AccessForm).'Destination System Name';
Label4.Text = First(Col_AccessForm).'Destination IP-Address';
Label5.Text = First(Col_AccessForm).'Destination Port/s';
Label6.Text = First(Col_AccessForm).'VPN/Lease';
Gallery Item syntax: Col_AccessForm
The trash can icon OnSelect: Remove(Col_AccessForm, LastN(Col_AccessForm,1)
How can I achieve this?