Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I need to know how to view the list of Names in a textbox.
Example:
When I click any one 'Dept' , It shows the List of names in a text Box.....
Hi,
Try the below code.
=if(GetSelectedCount(Dept)>0,Concat(Name,chr(10)))
Try like Concat(Name, ',')
Hi,
Try the below code.
=if(GetSelectedCount(Dept)>0,Concat(Name,chr(10)))
concat( distinct Name, '-')
if you want every name to come on a different line use
=Concat(DISTINCT Name,Chr(10))