1

The string looks like:

teststring = "Sunday,Monday"

enter image description here

In combobox's DefaultSelectedItems when I write like this, it works.

How can I make this kind of format dynamically using the above teststring (even when teststring changes to something else)??

1 Answers1

1

The below code worked for me:

ClearCollect(collectOutput,RenameColumns(Split(Teststring,","),"Result", "Value"))

To access the collect list I just wrote collectOutput.Value in DefaultSelectedItems Property