I have a custom view that truncates the description of things (for us, that can sometimes make a single row very, very big). To do this, select the field(s) that can get big (such as description ), switch to Text Mode, and add a valueexpression similar to this: valueexpression=IF(LEN({description}) > 55, LEFT({description}, 50) + ' .....', {description}) If the description is over 55 characters, this will truncate the description to 50 characters and add ..... after it (to indicate it's been truncated). Here is a full example for my description field: descriptionkey=description linkedname=direct listsort=string(description) namekey=description.abbr querysort=description section=0 shortview=false stretch=70 textmode=true valueexpression=IF(LEN({description}) > 60, LEFT({description}, 50) + ' .....', {description}) valuefield=description valueformat=HTML width=200 Sean