Truncating characters to fit the Inventory tag Label

L

Lee

Hello,
I want to print a label model (5160). There is one field with very long text. I want to truncate it in order to fit the formart of this kind of label. Any suggestion would help.
Thanks,
 
D

Duane Hookom

You can truncate it by not allowing the text box to grow.

--
Duane Hookom
MS Access MVP


Lee said:
Hello,
I want to print a label model (5160). There is one field with very long
text. I want to truncate it in order to fit the formart of this kind of
label. Any suggestion would help.
 
J

John Vinson

Hello,
I want to print a label model (5160). There is one field with very long text. I want to truncate it in order to fit the formart of this kind of label. Any suggestion would help.
Thanks,

Use the Left() function as a calculated field, and print that rather
than the text field. E.g. if you have a text field named Verbose and
want to print only 36 characters of it, type

PrintLess: Left([Verbose], 36)

in a vacant Field cell of a query, and print that field on your label.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top