February 12, 200917 yr Newbies I am having difficulty finding a function that will allow me to combine the contents of two fields from two differnt records. Record 1 and 2 both contain a text field Game_Results. Record 1 Game_results contains "Moose 1 Hellmovers 2" while Record 2 Game_results contain "Pushers 2 Condors 6" I need the result to equal "Moose 1 Hellmovers 2, Pushers 2 Condors 6" Is there a function that will do this?
February 12, 200917 yr Try the GetNthRecord function. How are the two records related? Or are they just sitting next to each other on a layout?
February 13, 200917 yr Author Newbies The two records are game summaries. Their common link is the game date.
February 13, 200917 yr Try... Substitute( List( Summaries::Description ) ; ¶ ; ", " ) Where "Summaries::Description" is your related field from the Game table to Summaries table.
Create an account or sign in to comment