I have a description field that I want to show about 3 inches of data only. However, I would like to not cut off the description unless I add ... to indicate to the users that there are more information in the field that is not visible on the report.
I started using this formula to do exactly that.
The problem is that some users are using CAPS, some are using lower case and some are using Sentence Case. This puts my length all over the place, but works.
[red]Look at the wasted real-estate between the dotted lines [/red]
Is there any other cool ideas to get maximum visibility without word wrapping and still appending my ... is an indicator.
thanks
tav
I started using this formula to do exactly that.
Code:
If Length ({WORKORDER.DESCRIPTION})>37 then Left({WORKORDER.DESCRIPTION},38) &'...' else {WORKORDER.DESCRIPTION}
The problem is that some users are using CAPS, some are using lower case and some are using Sentence Case. This puts my length all over the place, but works.
[red]Look at the wasted real-estate between the dotted lines [/red]

Is there any other cool ideas to get maximum visibility without word wrapping and still appending my ... is an indicator.
thanks
tav