Dell,
Thanks for your post..
I have tried below but it still says A string is required here
NumberVar i := 1;
StringVar result := '';
while i < UBound({?Store}) do
(
if i = 1 then
result := {?Store};
;
result := result + ',' + {?Store};
i := i + 1;
)