Declared a variable list in add to collection, but still getting above error.
Can you initialise the list before using:
Where you have created a list assign the following or you can use an assign stage as well.
New List (Of String)
Thanks.
Hey @kannathalmahe12 ,
You would have to initialize the List
New List(Of String) or someother datatype if you’re using.
Secondly you can use the list.append method to add data to your list.