Question : Creating a list for a calculated field from a related table

I would like to have one field hold a list of values related users on the project level. The list would concatenate into one field showing "username", then a comma, "then next username" and so forth through all related records. How can this be done?

Answer : Creating a list for a calculated field from a related table

Have a calc in the project table that does this:

Substitute ( List ( User::username ) ; "<enter paragraph symbol here>" ; ", " )

This will create a list of usernames related to the current project record and will substitute the paragraph return character for a comma, so you have a string instead of a return delimited list.
Random Solutions  
 
programming4us programming4us