I am working with a database which allows for the names of 2 adult parents plus up to 5 children. In a family listing directory, I want the report to print LastName then FirstName on lines where there are no children, but LastName then FirstName plus children's first names when there are children. But I don't want blank lines in between entries.<br>My control looks like this...<br>=Format([LastName],">"
& ":" & " " & [First Names] & " " & IIf(IsNull([Child's Name]),"",[Child's Name]) & IIf(IsNull([Child's Name 2]),"",(", " & [Child's Name 2])) & IIf(IsNull([Child's Name 3]),"",(", " & [Child's Name 3])) & IIf(IsNull([Child's Name 4]),"",(", " & [Child's Name 4])) & IIf(IsNull([Child's Name 5]),"",(", " & [Child's Name 5]))<br>and I have properties set to "Can Grow" and "Can Shrink"<br>This works alright, except I was wondering if there is any way to force the children's names onto the next line.<br>This would make an entry look like...<br> SMITH: Warner & Agnes<br> Samantha, Julia, Frederick<br>rather than like...<br> SMITH: Warner & Agnes Samantha,<br> Julia, Frederick<br>Any suggestions?<br>Tom Watson<br><br>