April 2, 201114 yr I have a data base that I am keeping track of speeches each event creates a new record and I have it tied to a contact ID I just want a summary field listing all the talks this person gave with a comma between them......... I do not want to do a report layout just a calculation field listing the talks a person would be giving. Thanks in advance..
April 3, 201114 yr Use the List() function to concatenate all the related speeches into a return-delimited list. Then use the Substitute() function to replace the returns with commas and spaces. Try this code: Substitute( List( speeches::speech_name ) ; "¶" ; ", " )
April 3, 201114 yr Author Use the List() function to concatenate all the related speeches into a return-delimited list. Then use the Substitute() function to replace the returns with commas and spaces. Try this code: Substitute( List( speeches::speech_name ) ; "¶" ; ", " ) the list function is not in 7 at least I cannot find it....... I need like a sum field.
Create an account or sign in to comment