| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | Newsletters | VB Forums | Developer.com |
|
|||||||
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I have a data field in my report that needs to truncate when it is too long. I do not have "Can Grow" checked, but this field will still run over and interrupt other data.
I cannot reposition this field so it won't interrupt anything else. Thanks for any help. |
|
#2
|
|||
|
|||
|
Re: Data Field not Truncating
If the filed has too many characters without a space this may happen. To avoid this create a formula @MyField having the code
Code:
mid(Field,1,20)
__________________
Madhivanan Failing to plan is Planning to fail |
![]() |
| Bookmarks |
|
||||||
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|