I have 3 rows in my sharepoint list having one choice column in which there are multiple values..
I want to show all choice column values from all rows in a text label separated by space.

I tried: " Left( Concat( LookUp(phasecc,UserID=TemplateGalleryList1.Selected.'User ID' ).Class,Value & Char(10 )) , Len( Concat( LookUp(phasecc,UserID=TemplateGalleryList1.Selected.'User ID' ).Class,Value & ", " ) ) -1) "
where class is choice column
but I'm getting only first row values not from all rows.
Thanks
Any help will be much appreciated.