Reply
 
Thread Tools Display Modes
  #1   Report Post  
tracymoo
 
Posts: n/a
Default vertical column option??

I am merging data from Excel to Word using Avery 5160 labels in alpha order.
I need to change the column from horizontal to vertical order. Is this
possible? How??
  #2   Report Post  
Doug Robbins
 
Posts: n/a
Default

Here's a macro that will allow you to sort a datasource that is in the form
of a Word table so that the records (in their original order will print down
then across rather than across then down. You should be able to just copy
and paste your Excel data into a Word document so that you have a table on
which you can run the macro.

' Macro to assign numbers to data source so that it can be sorted to cause
' labels to print down columns
Dim Message, Title, Default, labelrows, labelcolumns, i As Integer, j As
Integer, k As Integer
Message = "Enter the number of labels in a row" ' Set prompt.
Title = "Labels per Row" ' Set title.
Default = "3" ' Set default.
' Display message, title, and default value.
labelcolumns = InputBox(Message, Title, Default)
Message = "Enter the number of labels in a column" ' Set prompt.
Title = "Labels per column" ' Set title.
Default = "5" ' Set default.
labelrows = InputBox(Message, Title, Default)
ActiveDocument.Tables(1).Columns.Add
BeforeColumn:=ActiveDocument.Tables(1).Columns(1)
ActiveDocument.Tables(1).Rows(1).Range.Cut
k = 1
For i = 1 To ActiveDocument.Tables(1).Rows.Count - labelcolumns
For j = 1 To labelrows
ActiveDocument.Tables(1).Cell(i, 1).Range.InsertBefore k + (j - 1) *
labelcolumns
i = i + 1
Next j
k = k + 1
i = i - 1
If k Mod labelcolumns = 1 Then k = k - labelcolumns + labelcolumns *
labelrows
Next i
ActiveDocument.Tables(1).Sort FieldNumber:="Column 1"
ActiveDocument.Tables(1).Rows(1).Select
Selection.Paste
ActiveDocument.Tables(1).Columns(1).Delete

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP
"tracymoo" wrote in message
...
I am merging data from Excel to Word using Avery 5160 labels in alpha
order.
I need to change the column from horizontal to vertical order. Is this
possible? How??



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
table column width problems Dena Tables 2 March 8th 05 03:51 AM
How do I type vertical in word 2003 at top of a column Frank X Page Layout 1 March 1st 05 06:32 PM
Vertical text column, titling page? Luke Microsoft Word Help 2 February 22nd 05 12:30 PM
Dragging table column resets Sedonakids Tables 0 January 12th 05 01:11 AM
Not your average Word column question - help! John Microsoft Word Help 6 January 11th 05 04:32 AM


All times are GMT +1. The time now is 08:33 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"