Data Spilling to Multiline

  • I am using a table where I need to display a column value.

    The data of the Column is from the stored procedure, and the column value is too large, so it is getting wrapped and the value is displayed in multiline in the textbox of the table.

    I need to display only one line irrespective of how much it can accomodate, I had set the CanGrow property to False, still it is not working also I cannot change the SP.

    Please suggest..

  • You could limit the data to a maximum number of characters with something like

    =LEFT(Fields!FieldName.Value,30)

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply