View Full Version : Access 2000 Report Label Question?


Benny Wong
03-27-2003, 10:24 PM
Hello All,
I am currently working with Access 2000. I am trying to create a mailing label. The label is setup as:

FirstName LastName, Title
Organization
Address
City, State Zip

The problem that I am having is the Organization character
wraps down to the next line on the Address line. I would
like to limit the Organization line to only 30 characters.
How can I do this. This is currently what I have:

Public Function Avery_Organization(Organization)
' Trim to 30 characters only starting at 1 to 30
If Len(Avery_Organization) > 30 Then
Avery_Organization = Mid(Avery_Organization, 1, 30)
End If
End Function

Thanks for any help or suggestion in advance.

KevinM
03-28-2003, 03:39 AM
Set the 'Can Grow' to No on the Org field and report details properties.