Hi@Priyanka09,
Based on the issue that you mentioned, do you want to concatenate all the options in the dropdown?
Could you please share a bit more about your scenario:
- what is the column type corresponding to the column you populate the dropdown?
- how you set the Items property of the dropdown?
// If this is a Choice column, please check the following workaround.
In my scenario, I set the Items property of the Dropdown as below:
Choices(Test1224.Choices)
I set the Text property of the Label as below:
Concat(Choices(Test1224.Choices),Value,",")
// If this is a Text column, please check the following workaround.
In my scenario, I set the Items property of the Dropdown as below:
Distinct(Test1224,Text)
I set the Text property of the Label as below:
Concat(Distinct(Test1224,Text),Result,",")
Note: I use the Distinct() function to get the distinct options.


Hope it could help.
Best Regards,
Qi