Sorting Combined Text Field by Record ID#
- 8 months agoOK, try this. Numeric field called sort on the Child table. List("-", PadLeft(ToText([Sort]),2,"0"), [Language]) That will result in a string like 02-Korean Then make a combined text summary of that field. Then use this formula in a formula text field type to strip out the prefixes. var text AllLanguagesSorted = ToText([Combined Text Sorted name for roll up]); List("\n", 
 NotLeft(Part($AllLanguagesSorted,1,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,2,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,3,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,4,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,5,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,6,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,7,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,8,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,9,";"),"-"),
 NotLeft(Part($AllLanguagesSorted,10,";"),"-")
 )