Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

rows to columns

0 views
Skip to first unread message

Waldo710

unread,
Oct 28, 2008, 3:00:01 PM10/28/08
to
I have a customer list that SHOULD read:

name address phone
name address phone

but it currently reads:

name
address
phone

name
address
phone

Help please?

Sheeloo 95 64

unread,
Oct 28, 2008, 3:16:01 PM10/28/08
to
If your data is in Col A from A1
then enter this in B1
=INDIRECT("A"&(ROW()-1)*4+COLUMN()-1)
and copy to D1 and then copy down till end of your data set
Once you get what you want you can copy and paste speical|value

ShaneDevenshire

unread,
Oct 28, 2008, 3:22:01 PM10/28/08
to
Hi,

1. Depending on how many there are you could use the Copy; Edit, Paste
Special, Transpose command.
2. You could use VBA
3. Or, assuming that you data starts in A1 you can enter the following
formula and copy it to the right three columns and down as far as necessary:
=OFFSET($A$1,(COLUMN(A1)-1)+(ROW(A1)-1)*4,0)

--
Thanks,
Shane Devenshire

redbird

unread,
Oct 30, 2008, 1:47:02 PM10/30/08
to
The easiest way I can think of (without using programming) would be to do
something like the following:

A B C
D
1 name1 =A1 =A2 =A3
2 address1
3 phone1
4
5 name2
6 etc.

Copy B1 - D1 and paste in B5, B9, etc. You can get creative to find the
easiest way to do this.
Copy B1 - D?, select B1, edit | paste special | values
Sort columns B thru D on column B to eliminate blank lines
Delete column A if desired

"Waldo710" <Wald...@discussions.microsoft.com> wrote in message
news:BA85FF10-9D2D-402A...@microsoft.com...

0 new messages