cancel
Showing results for 
Search instead for 
Did you mean: 

Concatenated text field (first page only shows Group Heder )

Former Member
0 Kudos

I have a sub report shows Note Type (in Group Header)

and Note_Text.

This report should show concatenated Note Text records under Note Type.

I set up formulas like this.

(Group Header #1)

Note_Type @HeadG

WhilePrintingRecords;

Global StringVar ConCat ;

if not inrepeatedgroupheader then ConCat := "";

(Details ) Suppress

(Group Footer #1)

@Test1

WhileReadingRecords;

Global StringVar ConCat;

if not IsNull({VW_CHANGE_NOTES.NOTE_TEXT}) then

(

ConCat := (ConCat + {VW_CHANGE_NOTES.NOTE_TEXT});

)

Concatenated Note_Text records worked, but first page of the report only shows Note_Type on top of the page and rest of the page is blank.

Second page shows Concatenated Note_Text records.

First page should show Note_Type (Top line) and Concatenated Note_Text records .

I used Suppress at Details section but didn't work.

Does anybody know how to get rid of blank Details section.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

In the Designer, right-click on the field that contains your concatenated notes. Select "Format Field" and on the "Common" tab turn off "Keep Object Together".

-Dell

Former Member
0 Kudos

Thank you very much, Dell. It worked.

Answers (0)