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  

How do I invert a table in Word?



 
 
Thread Tools Display Modes
  #1  
Old August 19th, 2009, 12:10 PM posted to microsoft.public.word.tables
Ranjiv
external usenet poster
 
Posts: 1
Default How do I invert a table in Word?

I am using Microsoft Office 2003 Professional. I want to invert a table -
i.e. make the columns into rows, and the rows into columns. How can I do
this?
  #2  
Old August 19th, 2009, 01:12 PM posted to microsoft.public.word.tables
Luc
external usenet poster
 
Posts: 1,488
Default How do I invert a table in Word?

Ranjiv,
As far as I know not in Word, but if it is a relatively straigthforward
table you could copy paste it to Excel and transpose the columns into rows
and vice versa there. Then copy again to Word.

--

Luc Sanders
MVP - PowerPoint

"Ranjiv" schreef in bericht
...
I am using Microsoft Office 2003 Professional. I want to invert a table -
i.e. make the columns into rows, and the rows into columns. How can I do
this?


  #3  
Old August 19th, 2009, 01:16 PM posted to microsoft.public.word.tables
Jay Freedman
external usenet poster
 
Posts: 9,488
Default How do I invert a table in Word?

On Wed, 19 Aug 2009 04:10:01 -0700, Ranjiv
wrote:

I am using Microsoft Office 2003 Professional. I want to invert a table -
i.e. make the columns into rows, and the rows into columns. How can I do
this?


The technical term for what you want to do is "transpose" rather than
"invert". Word doesn't have a tool for that, but Excel does. Assuming
you have Office with both Word and Excel installed, you can transpose
a table as follows:

- Open both programs.

- Select the entire table in Word and copy it to the clipboard.

- Switch to Excel and paste into the first cell of an empty worksheet.
Each cell of the Word table will be placed into a separate cell of the
worksheet.

- Select the table you just pasted, and copy it to the clipboard.

- Click in an empty area of the worksheet, away from the existing
table.

- Click Edit Paste Transpose (I'm not sure exactly what that
sequence is, because I don't have Excel 2003 at the moment).

- Select the transposed table, copy it to the clipboard, and paste it
into the Word document. Delete the original table if necessary.

--
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.
  #4  
Old August 19th, 2009, 10:46 PM posted to microsoft.public.word.tables
Doug Robbins - Word MVP
external usenet poster
 
Posts: 8,239
Default How do I invert a table in Word?

Here's a macro that will do it in Word

' Transposer Macro
' Macro creaeted 18/01/1999 by Doug Robbins
' to transpose rows and columns in a table
Dim NumCols as Long, NumRows as Long, RowCounter as Long, ColCounter as Long
Dim CellText as String
NumCols = ActiveDocument.Tables(1).Columns.Count
NumRows = ActiveDocument.Tables(1).Rows.Count
ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=NumCols,
NumColumns:= _
NumRows
RowCounter = 0
While RowCounter NumRows
ColCounter = 0
While ColCounter NumCols
CellText = ActiveDocument.Tables(1).Cell(RowCounter + 1, ColCounter
+ 1).Range.Text
CellText = Left(CellText, Len(CellText) - 2)
ActiveDocument.Tables(2).Cell(ColCounter + 1, RowCounter +
1).Range.InsertBefore CellText
ColCounter = ColCounter + 1
Wend
RowCounter = RowCounter + 1
Wend


--
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, originally posted via msnews.microsoft.com
"Ranjiv" wrote in message
...
I am using Microsoft Office 2003 Professional. I want to invert a table -
i.e. make the columns into rows, and the rows into columns. How can I do
this?


 




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


All times are GMT +1. The time now is 01:21 PM.


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