Sunday, February 19, 2012

how can I force text wrapping

In some text boxes within the table header, I want to force the text to wrap. This would be comparable to using Alt+Enter in Excel. For example, the text box may read like this...

Customer

Install Date

but I want it to look like this...

Customer

Install

Date

Thanks.

In your textbox, you can set the expression as follows:

="Customer" & vbcrlf & "Install" & vbclrf & "Date"

This should work and hope it helps!

|||

Thanks. That did it.

No comments:

Post a Comment