Hi @RandyHayes
You helped me last time with the below code. I would like to continue the sequence with the another Collection
If(Form.Mode<>FormMode.View,
With({_itms: Filter(CollectionA, !IsBlank(SourceName))},
Concat(
ForAll(Sequence(CountRows(_itms)),
{_itm: Last(FirstN(_itms, Value)), seq:Value}
),
Text(seq) & ". " &
"Source Name: " &" "&_itm.SourceName & Char(10) & " "&
"Source Service Type:" &" "&_itm.SourceServiceType & Char(10) & " "&
"Source IP: " &" "&_itm.SourceIP & Char(10) & " "&
"Source Port: " &" "&_itm.SourcePort & Char(10)
)
So I would like to continue the number sequence with the Collection B and I also wont know the number of items in this collection too. So for example if from above Collection A is 6, then Collection B will start the sequence at 7 for number of items in this Collection B.
Hope to get a response from you soon.