Hi Richard, You can do this in multiple ways. In the report COLUMN definition you can concatenate multiple properties and strings using an expression. The keyword NEWLINE is interpreted as a line break. An example would be: COLUMN 50::DESCRIPTION + NEWLINE + TYPE This works well when all entries in the report need the same type of treatment/formatting You can also force the newline in the schema using an IE_DESCRIPT override like this: IE_DESCRIPT = this.DESCRIPTION & "&&&" & this.NAME or something similar. The string "&&&" is interpreted by the report engine as a NEWLINE Regards, Frank
↧