PC Review


Reply
Thread Tools Rate Thread

Access Labels Maker Doesn't Work

 
 
ted collins
Guest
Posts: n/a
 
      27th May 2010
Used to able to make labels from earlier editions of Access w/o any problems.
Since updating to "2007" I wind up with messages popping up and little boxes
asking for parameter values for Trim even though I use the Label Wizard and
would assume "the Wizard" would/should take care of ninty gritty details. I'm
a "user" not a developer or programer. How do I fix this problem so I can
just print some labels?
--
elderuser
 
Reply With Quote
 
 
 
 
Arvin Meyer [MVP]
Guest
Posts: n/a
 
      28th May 2010
Open any code window and go to Tools >>> References and look for any marked
as "MISSING". If you find any, fix them. Then try and compile the database.
You may have to do it again.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.accessmvp.com
http://www.mvps.org/access
Co-author: "Access 2010 Solutions", published by Wiley


"ted collins" <(E-Mail Removed)> wrote in message
news:FF17A9F9-83B5-43BE-A521-(E-Mail Removed)...
> Used to able to make labels from earlier editions of Access w/o any
> problems.
> Since updating to "2007" I wind up with messages popping up and little
> boxes
> asking for parameter values for Trim even though I use the Label Wizard
> and
> would assume "the Wizard" would/should take care of ninty gritty details.
> I'm
> a "user" not a developer or programer. How do I fix this problem so I can
> just print some labels?
> --
> elderuser



 
Reply With Quote
 
ted collins
Guest
Posts: n/a
 
      31st May 2010
Thank you! Once I figured out how to get to the tools>references, I found
"utility.mda" with "MISSING" in front of it and I unchecked the box and the
labels appear almost perfect. Seems like there is always one more thing. The
labels will include phone numbers and the numbers appear in the labels but
without the normal formatting: i.e. (xxx) xxx-xxxx, the ( ) and - are
missing. What do i do to make them appear?
--
elderuser


"Arvin Meyer [MVP]" wrote:

> Open any code window and go to Tools >>> References and look for any marked
> as "MISSING". If you find any, fix them. Then try and compile the database.
> You may have to do it again.
> --
> Arvin Meyer, MCP, MVP
> http://www.datastrat.com
> http://www.accessmvp.com
> http://www.mvps.org/access
> Co-author: "Access 2010 Solutions", published by Wiley
>
>
> "ted collins" <(E-Mail Removed)> wrote in message
> news:FF17A9F9-83B5-43BE-A521-(E-Mail Removed)...
> > Used to able to make labels from earlier editions of Access w/o any
> > problems.
> > Since updating to "2007" I wind up with messages popping up and little
> > boxes
> > asking for parameter values for Trim even though I use the Label Wizard
> > and
> > would assume "the Wizard" would/should take care of ninty gritty details.
> > I'm
> > a "user" not a developer or programer. How do I fix this problem so I can
> > just print some labels?
> > --
> > elderuser

>
>
> .
>

 
Reply With Quote
 
John Spencer
Guest
Posts: n/a
 
      31st May 2010
How are they appearing NOW? 123 4567890? You can use the format function to
format the value
Format([TelephoneNumber],"(@@@)@@@@-@@@@")
If the number is 1234567890 then the format specification would be the
following if you wanted to add the space.
"(@@@) @@@-@@@@")


John Spencer
Access MVP 2002-2005, 2007-2010
The Hilltop Institute
University of Maryland Baltimore County

ted collins wrote:
> Thank you! Once I figured out how to get to the tools>references, I found
> "utility.mda" with "MISSING" in front of it and I unchecked the box and the
> labels appear almost perfect. Seems like there is always one more thing. The
> labels will include phone numbers and the numbers appear in the labels but
> without the normal formatting: i.e. (xxx) xxx-xxxx, the ( ) and - are
> missing. What do i do to make them appear?

 
Reply With Quote
 
ted collins
Guest
Posts: n/a
 
      1st Jun 2010
The telephone numbers appear in the format I prefer "(000) 000-0000"
everywhere (tables, queries, reports) except when I select them to appear on
a standard Avery label using the Access Label Wizard. I want up to three
telephone numbers to appear on one line on the label i.e. the fields are:
Home Phone, Work Phone, and Cell Phone. If the phone numbers are already
formatted the way I want them and appear correctly elsewhere why does
selecting them for use in a labels report cause this problem? They appear as:
1234567890.
--
elderuser


"John Spencer" wrote:

> How are they appearing NOW? 123 4567890? You can use the format function to
> format the value
> Format([TelephoneNumber],"(@@@)@@@@-@@@@")
> If the number is 1234567890 then the format specification would be the
> following if you wanted to add the space.
> "(@@@) @@@-@@@@")
>
>
> John Spencer
> Access MVP 2002-2005, 2007-2010
> The Hilltop Institute
> University of Maryland Baltimore County
>
> ted collins wrote:
> > Thank you! Once I figured out how to get to the tools>references, I found
> > "utility.mda" with "MISSING" in front of it and I unchecked the box and the
> > labels appear almost perfect. Seems like there is always one more thing. The
> > labels will include phone numbers and the numbers appear in the labels but
> > without the normal formatting: i.e. (xxx) xxx-xxxx, the ( ) and - are
> > missing. What do i do to make them appear?

> .
>

 
Reply With Quote
 
Arvin Meyer [MVP]
Guest
Posts: n/a
 
      2nd Jun 2010
If you look in the table, you have stored them unformatted. You can change
that with an update query (for safety, use a new column) using the format
function that John provided you.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.accessmvp.com
http://www.mvps.org/access
Co-author: "Access 2010 Solutions", published by Wiley


"ted collins" <(E-Mail Removed)> wrote in message
news:B9E26648-58EA-47F5-9C0B-(E-Mail Removed)...
> The telephone numbers appear in the format I prefer "(000) 000-0000"
> everywhere (tables, queries, reports) except when I select them to appear
> on
> a standard Avery label using the Access Label Wizard. I want up to three
> telephone numbers to appear on one line on the label i.e. the fields are:
> Home Phone, Work Phone, and Cell Phone. If the phone numbers are already
> formatted the way I want them and appear correctly elsewhere why does
> selecting them for use in a labels report cause this problem? They appear
> as:
> 1234567890.
> --
> elderuser
>
>
> "John Spencer" wrote:
>
>> How are they appearing NOW? 123 4567890? You can use the format function
>> to
>> format the value
>> Format([TelephoneNumber],"(@@@)@@@@-@@@@")
>> If the number is 1234567890 then the format specification would be the
>> following if you wanted to add the space.
>> "(@@@) @@@-@@@@")
>>
>>
>> John Spencer
>> Access MVP 2002-2005, 2007-2010
>> The Hilltop Institute
>> University of Maryland Baltimore County
>>
>> ted collins wrote:
>> > Thank you! Once I figured out how to get to the tools>references, I
>> > found
>> > "utility.mda" with "MISSING" in front of it and I unchecked the box and
>> > the
>> > labels appear almost perfect. Seems like there is always one more
>> > thing. The
>> > labels will include phone numbers and the numbers appear in the labels
>> > but
>> > without the normal formatting: i.e. (xxx) xxx-xxxx, the ( ) and - are
>> > missing. What do i do to make them appear?

>> .
>>



 
Reply With Quote
 
John Spencer
Guest
Posts: n/a
 
      2nd Jun 2010
Can you post the phone control's source?
Is it just a field? OR is it something like
="Home Phone" & [Home Phone]

I suspect that you have a display format that shows the phone number fields
with the formatting you see (very possibly the format is set at the table
field level). The actual value being stored is 1234567890.

John Spencer
Access MVP 2002-2005, 2007-2010
The Hilltop Institute
University of Maryland Baltimore County

ted collins wrote:
> The telephone numbers appear in the format I prefer "(000) 000-0000"
> everywhere (tables, queries, reports) except when I select them to appear on
> a standard Avery label using the Access Label Wizard. I want up to three
> telephone numbers to appear on one line on the label i.e. the fields are:
> Home Phone, Work Phone, and Cell Phone. If the phone numbers are already
> formatted the way I want them and appear correctly elsewhere why does
> selecting them for use in a labels report cause this problem? They appear as:
> 1234567890.

 
Reply With Quote
 
Ted Collins
Guest
Posts: n/a
 
      4th Jun 2010
Each is a field i.e. Home Phone, Work Phone, and Cell Phone in the Database
table.
At some point I think I selescted the use of the telephone number input mask
for data entry and everything appears with (@@@) @@@-@@@@ as the apparent
"format" in the table, queries, and reports other than in a label. I looked
at these fields in Table>Design View>Properties and note that while the input
mask was shown for each, the Format property box was blank. So I typed in the
above desired format you gave me with the hope that that would finally be it.
No help phone numbers on the labels still appear as 1234567890.

"John Spencer" wrote:

> Can you post the phone control's source?
> Is it just a field? OR is it something like
> ="Home Phone" & [Home Phone]
>
> I suspect that you have a display format that shows the phone number fields
> with the formatting you see (very possibly the format is set at the table
> field level). The actual value being stored is 1234567890.
>
> John Spencer
> Access MVP 2002-2005, 2007-2010
> The Hilltop Institute
> University of Maryland Baltimore County
>
> ted collins wrote:
> > The telephone numbers appear in the format I prefer "(000) 000-0000"
> > everywhere (tables, queries, reports) except when I select them to appear on
> > a standard Avery label using the Access Label Wizard. I want up to three
> > telephone numbers to appear on one line on the label i.e. the fields are:
> > Home Phone, Work Phone, and Cell Phone. If the phone numbers are already
> > formatted the way I want them and appear correctly elsewhere why does
> > selecting them for use in a labels report cause this problem? They appear as:
> > 1234567890.

> .
>

 
Reply With Quote
 
New Member
Join Date: Nov 2010
Posts: 1
 
      6th Nov 2010
"ted collins" wrote in message
news:FF17A9F9-83B5-43BE-A521-(E-Mail Removed)...
> Used to able to make labels from earlier editions of Access w/o any
> problems.
> Since updating to "2007" I wind up with messages popping up and little
> boxes
> asking for parameter values for Trim even though I use the Label Wizard
> and
> would assume "the Wizard" would/should take care of ninty gritty details.
> I'm
> a "user" not a developer or programer. How do I fix this problem so I can
> just print some labels?
> --
> elderuser
[/QUOTE]

I am using MS Access 2010 but was getting the Trim problem. It seems that if you go into the design screen you can see that some of the fields are like "Trim([Surname])". You just have to delete "Trim", which apparently has no meaning in this version of Access, and everything works fine.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows DVD maker doesn't work!! =?Utf-8?B?Vm9sdGFnZV9KaW0=?= Windows Vista General Discussion 6 31st Jul 2007 01:21 AM
Movie Maker Timeline doesn't work =?Utf-8?B?U2ViYXN0aWFu?= Windows XP Video 3 20th Aug 2006 04:19 PM
Envelopes + Labels doesn't work Gene Goldenfeld Microsoft Word New Users 0 5th Jun 2006 07:37 PM
audio doesn't work on movie maker Joon Bang Windows XP Video 0 1st Sep 2004 03:02 AM
RE: movie maker wizard doesn't work =?Utf-8?B?YWw=?= Windows XP Video 0 1st Sep 2004 12:13 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:40 PM.