Collection items display in message box

How to filter or display all items of collections in message box Any leads would be greatly appreciated

Hi @Sathish_Ashokan

You can use the For Each activity to iterate through the collection & inside the loop, you can use the Message Box activity to display each data.

Hope this helps,
Best Regards.

Hi,

How about using String.Join method as the following?

String.Join(vbCrLf,arrItems)

Regards,

Hi @Sathish_Ashokan

You can use For each activity to iterate the Items in the collection. Output - CurrentItem
The CurrentItem which contains the value of the collection.

Hope it helps!!

You can Put in the Message Box this “String.Join(“The thing to be separated, for example (,)”,Your List or Array Or Collection).ToString”