A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Tables
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Space between columns



 
 
Thread Tools Display Modes
  #1  
Old September 22nd, 2005, 06:08 PM
David Ziegler
external usenet poster
 
Posts: n/a
Default Space between columns

In Word 97, there was a feature for setting the space between columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command given below.
But I shouldn't have to go to this trouble, and I haven't taken the time to
build in a variable yet. Can anyone shed any light on why this feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)

  #2  
Old September 22nd, 2005, 07:34 PM
Anne Troy
external usenet poster
 
Posts: n/a
Default Space between columns

I could be wrong, David, but I believe that is incorrect. There has always
been a space between columns using Format--Columns, but I don't recall ever
hearing of one for tables.
************
Anne Troy
www.OfficeArticles.com

"David Ziegler" David wrote in message
...
In Word 97, there was a feature for setting the space between columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command given
below.
But I shouldn't have to go to this trouble, and I haven't taken the time
to
build in a variable yet. Can anyone shed any light on why this feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)



  #3  
Old September 23rd, 2005, 11:53 AM
Stefan Blom
external usenet poster
 
Posts: n/a
Default Space between columns

Actually, in Word 97, the Cell Width and Height dialog had a "Space
between columns" option (on the Column tab).

There is no direct equivalence in Word 2000/02/03. Instead, these
versions have cell margins, which can be specified for an entire table
(in the Table Options dialog box), or for individual cells (in the Cell
Options dialog box).

Roughly speaking, the space between columns correspond to the sum of the
Left and Right margin setting in the Table Options dialog box. In
practice, this means that setting the space between columns in the old
Cell Width and Height dialog box to x pt would produce Left and Right
margin values, each of which equal x/2 pt.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I could be wrong, David, but I believe that is incorrect. There has

always
been a space between columns using Format--Columns, but I don't

recall ever
hearing of one for tables.
************
Anne Troy
www.OfficeArticles.com

"David Ziegler" David wrote in

message
...
In Word 97, there was a feature for setting the space between

columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command given
below.
But I shouldn't have to go to this trouble, and I haven't taken the

time
to
build in a variable yet. Can anyone shed any light on why this

feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)








  #4  
Old September 23rd, 2005, 12:10 PM
Anne Troy
external usenet poster
 
Posts: n/a
Default Space between columns

I should've looked, Stefan. It's just been too long since I used it.
************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Actually, in Word 97, the Cell Width and Height dialog had a "Space
between columns" option (on the Column tab).

There is no direct equivalence in Word 2000/02/03. Instead, these
versions have cell margins, which can be specified for an entire table
(in the Table Options dialog box), or for individual cells (in the Cell
Options dialog box).

Roughly speaking, the space between columns correspond to the sum of the
Left and Right margin setting in the Table Options dialog box. In
practice, this means that setting the space between columns in the old
Cell Width and Height dialog box to x pt would produce Left and Right
margin values, each of which equal x/2 pt.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I could be wrong, David, but I believe that is incorrect. There has

always
been a space between columns using Format--Columns, but I don't

recall ever
hearing of one for tables.
************
Anne Troy
www.OfficeArticles.com

"David Ziegler" David wrote in

message
...
In Word 97, there was a feature for setting the space between

columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command given
below.
But I shouldn't have to go to this trouble, and I haven't taken the

time
to
build in a variable yet. Can anyone shed any light on why this

feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)










  #5  
Old September 23rd, 2005, 12:34 PM
Stefan Blom
external usenet poster
 
Posts: n/a
Default Space between columns

Well, Word has a tendency to move things around in the user interface,
so it can be hard to keep track. (In this case the move is combined with
a different implementation, which makes it even more complicated!)

FWIW, you can look in old dialog boxes without actually having old Word
versions installed. With the insertion point in a table cell, press
Alt+F8 to display the Macros dialog box. For "Macros in", choose "Word
commands". Locate the TableFormatCell item, and click Run, and now
you'll se it: the Cell Height and Width dialog box.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I should've looked, Stefan. It's just been too long since I used it.


************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Actually, in Word 97, the Cell Width and Height dialog had a "Space
between columns" option (on the Column tab).

There is no direct equivalence in Word 2000/02/03. Instead, these
versions have cell margins, which can be specified for an entire

table
(in the Table Options dialog box), or for individual cells (in the

Cell
Options dialog box).

Roughly speaking, the space between columns correspond to the sum of

the
Left and Right margin setting in the Table Options dialog box. In
practice, this means that setting the space between columns in the

old
Cell Width and Height dialog box to x pt would produce Left and

Right
margin values, each of which equal x/2 pt.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I could be wrong, David, but I believe that is incorrect. There has

always
been a space between columns using Format--Columns, but I don't

recall ever
hearing of one for tables.
************
Anne Troy
www.OfficeArticles.com

"David Ziegler" David wrote in

message
...
In Word 97, there was a feature for setting the space between

columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command

given
below.
But I shouldn't have to go to this trouble, and I haven't taken

the
time
to
build in a variable yet. Can anyone shed any light on why this

feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)














  #6  
Old September 23rd, 2005, 12:50 PM
Anne Troy
external usenet poster
 
Posts: n/a
Default Space between columns

I've got 97 and up installed. I just didn't look.
************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Well, Word has a tendency to move things around in the user interface,
so it can be hard to keep track. (In this case the move is combined with
a different implementation, which makes it even more complicated!)

FWIW, you can look in old dialog boxes without actually having old Word
versions installed. With the insertion point in a table cell, press
Alt+F8 to display the Macros dialog box. For "Macros in", choose "Word
commands". Locate the TableFormatCell item, and click Run, and now
you'll se it: the Cell Height and Width dialog box.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I should've looked, Stefan. It's just been too long since I used it.


************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Actually, in Word 97, the Cell Width and Height dialog had a "Space
between columns" option (on the Column tab).

There is no direct equivalence in Word 2000/02/03. Instead, these
versions have cell margins, which can be specified for an entire

table
(in the Table Options dialog box), or for individual cells (in the

Cell
Options dialog box).

Roughly speaking, the space between columns correspond to the sum of

the
Left and Right margin setting in the Table Options dialog box. In
practice, this means that setting the space between columns in the

old
Cell Width and Height dialog box to x pt would produce Left and

Right
margin values, each of which equal x/2 pt.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I could be wrong, David, but I believe that is incorrect. There has
always
been a space between columns using Format--Columns, but I don't
recall ever
hearing of one for tables.
************
Anne Troy
www.OfficeArticles.com

"David Ziegler" David wrote in
message
...
In Word 97, there was a feature for setting the space between
columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command

given
below.
But I shouldn't have to go to this trouble, and I haven't taken

the
time
to
build in a variable yet. Can anyone shed any light on why this
feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)
















  #7  
Old September 23rd, 2005, 12:57 PM
Stefan Blom
external usenet poster
 
Posts: n/a
Default Space between columns

Not even I am *that* lazy! g

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I've got 97 and up installed. I just didn't look.
************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Well, Word has a tendency to move things around in the user

interface,
so it can be hard to keep track. (In this case the move is combined

with
a different implementation, which makes it even more complicated!)

FWIW, you can look in old dialog boxes without actually having old

Word
versions installed. With the insertion point in a table cell, press
Alt+F8 to display the Macros dialog box. For "Macros in", choose

"Word
commands". Locate the TableFormatCell item, and click Run, and now
you'll se it: the Cell Height and Width dialog box.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I should've looked, Stefan. It's just been too long since I used

it.

************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Actually, in Word 97, the Cell Width and Height dialog had a

"Space
between columns" option (on the Column tab).

There is no direct equivalence in Word 2000/02/03. Instead, these
versions have cell margins, which can be specified for an entire

table
(in the Table Options dialog box), or for individual cells (in

the
Cell
Options dialog box).

Roughly speaking, the space between columns correspond to the sum

of
the
Left and Right margin setting in the Table Options dialog box. In
practice, this means that setting the space between columns in

the
old
Cell Width and Height dialog box to x pt would produce Left and

Right
margin values, each of which equal x/2 pt.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I could be wrong, David, but I believe that is incorrect. There

has
always
been a space between columns using Format--Columns, but I don't
recall ever
hearing of one for tables.
************
Anne Troy
www.OfficeArticles.com

"David Ziegler" David wrote

in
message
...
In Word 97, there was a feature for setting the space between
columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command

given
below.
But I shouldn't have to go to this trouble, and I haven't

taken
the
time
to
build in a variable yet. Can anyone shed any light on why this
feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)



















  #8  
Old September 23rd, 2005, 02:08 PM
Anne Troy
external usenet poster
 
Posts: n/a
Default Space between columns

I once had a boss tell me that my laziness makes me efficient. LOL!
************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Not even I am *that* lazy! g

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I've got 97 and up installed. I just didn't look.
************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Well, Word has a tendency to move things around in the user

interface,
so it can be hard to keep track. (In this case the move is combined

with
a different implementation, which makes it even more complicated!)

FWIW, you can look in old dialog boxes without actually having old

Word
versions installed. With the insertion point in a table cell, press
Alt+F8 to display the Macros dialog box. For "Macros in", choose

"Word
commands". Locate the TableFormatCell item, and click Run, and now
you'll se it: the Cell Height and Width dialog box.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I should've looked, Stefan. It's just been too long since I used

it.

************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Actually, in Word 97, the Cell Width and Height dialog had a

"Space
between columns" option (on the Column tab).

There is no direct equivalence in Word 2000/02/03. Instead, these
versions have cell margins, which can be specified for an entire
table
(in the Table Options dialog box), or for individual cells (in

the
Cell
Options dialog box).

Roughly speaking, the space between columns correspond to the sum

of
the
Left and Right margin setting in the Table Options dialog box. In
practice, this means that setting the space between columns in

the
old
Cell Width and Height dialog box to x pt would produce Left and
Right
margin values, each of which equal x/2 pt.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I could be wrong, David, but I believe that is incorrect. There

has
always
been a space between columns using Format--Columns, but I don't
recall ever
hearing of one for tables.
************
Anne Troy
www.OfficeArticles.com

"David Ziegler" David wrote

in
message
...
In Word 97, there was a feature for setting the space between
columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command
given
below.
But I shouldn't have to go to this trouble, and I haven't

taken
the
time
to
build in a variable yet. Can anyone shed any light on why this
feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)





















  #9  
Old October 4th, 2005, 12:27 AM
Suzanne S. Barnhill
external usenet poster
 
Posts: n/a
Default Space between columns

Like many others, I restored Cell Height and Width to my Table menu. There
are things that can be done with this dialog that can't be done in Table
Properties (see http://word.mvps.org/FAQs/TblsFldsFm...ePropProbs.htm);
one main advantage is that F4 works with this dialog.

--
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.

"Stefan Blom" wrote in message
...
Well, Word has a tendency to move things around in the user interface,
so it can be hard to keep track. (In this case the move is combined with
a different implementation, which makes it even more complicated!)

FWIW, you can look in old dialog boxes without actually having old Word
versions installed. With the insertion point in a table cell, press
Alt+F8 to display the Macros dialog box. For "Macros in", choose "Word
commands". Locate the TableFormatCell item, and click Run, and now
you'll se it: the Cell Height and Width dialog box.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I should've looked, Stefan. It's just been too long since I used it.


************
Anne Troy
www.OfficeArticles.com

"Stefan Blom" wrote in message
...
Actually, in Word 97, the Cell Width and Height dialog had a "Space
between columns" option (on the Column tab).

There is no direct equivalence in Word 2000/02/03. Instead, these
versions have cell margins, which can be specified for an entire

table
(in the Table Options dialog box), or for individual cells (in the

Cell
Options dialog box).

Roughly speaking, the space between columns correspond to the sum of

the
Left and Right margin setting in the Table Options dialog box. In
practice, this means that setting the space between columns in the

old
Cell Width and Height dialog box to x pt would produce Left and

Right
margin values, each of which equal x/2 pt.

--
Stefan Blom
Microsoft Word MVP


"Anne Troy" wrote in message
...
I could be wrong, David, but I believe that is incorrect. There has
always
been a space between columns using Format--Columns, but I don't
recall ever
hearing of one for tables.
************
Anne Troy
www.OfficeArticles.com

"David Ziegler" David wrote in
message
...
In Word 97, there was a feature for setting the space between
columns. In
Word 2003, there's no equivalent feature.

I have achieved the equivalent with the one-line macro command

given
below.
But I shouldn't have to go to this trouble, and I haven't taken

the
time
to
build in a variable yet. Can anyone shed any light on why this
feature
disappeared?


Selection.Rows.SpaceBetweenColumns = InchesToPoints(0.05)















 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Hidden Columns in Shared Workbooks Rotary General Discussion 1 July 9th, 2005 12:28 AM
place text seperated by a space in a column into seperate columns hobiedog Worksheet Functions 2 June 27th, 2005 04:25 PM
Excel columns problem Charlie Johnson General Discussion 4 October 12th, 2004 04:40 PM
Inserted Excel Worksheet won't display all columns Andy General Discussion 1 September 30th, 2004 01:18 PM
Newbie Question on Extra Space After Numeric Values Yellowbird Worksheet Functions 3 March 8th, 2004 05:40 PM


All times are GMT +1. The time now is 12:22 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.