Help!

Border error message regarding pt size

 
  

Post new topic   General Reply to Topic (not reply to a specific post)    Forums Home -> Tables RSS
Next:  Table with the Jitters  
Author Message
Laura Kay
External


Since: Jun 05, 2007
Posts: 2



PostPosted: Tue Jun 05, 2007 12:38 pm    Post subject: Border error message regarding pt size
Archived from groups: microsoft>public>word>tables (more info?)

I'm trying to format borders in a table and the error messge "The measurement
must be between 1 pt and 31 pt" appears.

I've changed the pt size to 1 pt but it doesn't help. It's only in this one
document. If I cut and paste to a new document the borders function works
fine. Unfortunately, it's a huge document and I can't copy the whole thing
to a new document. Anyone have experience or a solution with this?
Back to top
Suzanne S. Barnhill
External


Since: Sep 26, 2003
Posts: 24065



PostPosted: Tue Jun 05, 2007 3:15 pm    Post subject: Re: Border error message regarding pt size [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The error message is referring not to the border weight but the "Distance
from text."

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Laura Kay" <Laura Kay.TakeThisOut@discussions.microsoft.com> wrote in message
news:B7F42988-5C4B-4C3C-9868-1AC5980EF6EC@microsoft.com...
> I'm trying to format borders in a table and the error messge "The
measurement
> must be between 1 pt and 31 pt" appears.
>
> I've changed the pt size to 1 pt but it doesn't help. It's only in this
one
> document. If I cut and paste to a new document the borders function works
> fine. Unfortunately, it's a huge document and I can't copy the whole
thing
> to a new document. Anyone have experience or a solution with this?
Back to top
Jay Freedman
External


Since: Sep 16, 2003
Posts: 2317



PostPosted: Tue Jun 05, 2007 4:29 pm    Post subject: Re: Border error message regarding pt size [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

It isn't complaining about the width of the border. Somehow you've gotten a
bad setting for a page border.

In the Format > Borders and Shading dialog, go to the Page Border tab and
click the Options button at the lower right. Each of the four boxes in the
Margins group must be set to a number between 1 and 31 pt. (If this is set
wrong, it doesn't matter that the Page Border itself is set to None.)

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

Laura Kay wrote:
> I'm trying to format borders in a table and the error messge "The
> measurement must be between 1 pt and 31 pt" appears.
>
> I've changed the pt size to 1 pt but it doesn't help. It's only in
> this one document. If I cut and paste to a new document the borders
> function works fine. Unfortunately, it's a huge document and I can't
> copy the whole thing to a new document. Anyone have experience or a
> solution with this?
Back to top
Laura Kay
External


Since: Jun 11, 2007
Posts: 1



PostPosted: Mon Jun 11, 2007 10:49 am    Post subject: Re: Border error message regarding pt size [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thank you Jay. Your answer was specific and much appreciated!
--
-Laura


"Jay Freedman" wrote:

> It isn't complaining about the width of the border. Somehow you've gotten a
> bad setting for a page border.
>
> In the Format > Borders and Shading dialog, go to the Page Border tab and
> click the Options button at the lower right. Each of the four boxes in the
> Margins group must be set to a number between 1 and 31 pt. (If this is set
> wrong, it doesn't matter that the Page Border itself is set to None.)
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ: http://word.mvps.org
> Email cannot be acknowledged; please post all follow-ups to the newsgroup so
> all may benefit.
>
> Laura Kay wrote:
> > I'm trying to format borders in a table and the error messge "The
> > measurement must be between 1 pt and 31 pt" appears.
> >
> > I've changed the pt size to 1 pt but it doesn't help. It's only in
> > this one document. If I cut and paste to a new document the borders
> > function works fine. Unfortunately, it's a huge document and I can't
> > copy the whole thing to a new document. Anyone have experience or a
> > solution with this?
>
>
>
Back to top
Larry Dees
External


Since: Aug 04, 2009
Posts: 1



PostPosted: Tue Aug 04, 2009 5:02 am    Post subject: Re: Border error message regarding pt size [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I am having the same error, however the error occurs when you try to get into
the 'page borders' tab, and Word won't let me enter the tab to change the
settings. Any idea on how to get around this?

"Jay Freedman" wrote:

> It isn't complaining about the width of the border. Somehow you've gotten a
> bad setting for a page border.
>
> In the Format > Borders and Shading dialog, go to the Page Border tab and
> click the Options button at the lower right. Each of the four boxes in the
> Margins group must be set to a number between 1 and 31 pt. (If this is set
> wrong, it doesn't matter that the Page Border itself is set to None.)
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ: http://word.mvps.org
> Email cannot be acknowledged; please post all follow-ups to the newsgroup so
> all may benefit.
>
> Laura Kay wrote:
> > I'm trying to format borders in a table and the error messge "The
> > measurement must be between 1 pt and 31 pt" appears.
> >
> > I've changed the pt size to 1 pt but it doesn't help. It's only in
> > this one document. If I cut and paste to a new document the borders
> > function works fine. Unfortunately, it's a huge document and I can't
> > copy the whole thing to a new document. Anyone have experience or a
> > solution with this?
>
>
>
Back to top
Jean-Guy Marcil
External


Since: May 15, 2009
Posts: 12



PostPosted: Tue Aug 04, 2009 1:55 pm    Post subject: Re: Border error message regarding pt size [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Larry Dees was telling us:
Larry Dees nous racontait que :

> I am having the same error, however the error occurs when you try to
> get into the 'page borders' tab, and Word won't let me enter the tab
> to change the settings. Any idea on how to get around this?

Try running this macro, you can change the distances (in points):

Sub SetPageBorderDistance()

With Selection.Sections(1)
With .Borders
.DistanceFromTop = 15
.DistanceFromLeft = 15
.DistanceFromBottom = 15
.DistanceFromRight = 15
End With
End With

End Sub

If you need help with using a macro:
http://word.mvps.org/faqs/macrosvba/CreateAMacro.htm


--
______________________________
Jean-Guy Marcil
Montreal, Canada
Back to top
Rutabaga
External


Since: Mar 16, 2007
Posts: 16



PostPosted: Thu Oct 22, 2009 7:50 am    Post subject: RE: Page border help [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Howdy,

My problem may be the same as others' in here. I had a light gray border
going down the entire length of my Word doc, but when I tried to get to the
Page Border tab in Borders and Shading, I was always confronted with the
message "the measurement must be between 1 pt and 31 pt". The only choice I
had was to close the Borders and Shading box without making any changes.

I was able to access the Page Border tab by choosing Format > Reveal
Formatting, expanding the Section formatting, then clicking Borders.
HOWEVER...

When I selected None in the Borders and Shading window, I still got the
"measurement must be between 1 and 31" message. To resolve this, I went to
the Art pulldown list and selected the apples to apply to the whole document,
then pressed OK. This gave me a border of apples around the whole doc, but I
was then able to re-open the Borders and Shading window and choose None
without any error messages.

"Chris dP" wrote:

> Hi Dave, I have the same problem. Did you get a response? Thanks Chris
>
> "David Henschel" wrote:
>
> > Hi Jay, I am having the same error, however the error occurs when you try to get into the 'page borders' tab, and Word won't let me enter the tab to change the settings. Any idea on how to get around this? Thanks, Dave
> >
> >
> >
Back to top
Display posts from previous:   
Post new topic   General Reply to Topic (not reply to a specific post)    Forums Home -> Tables All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum