formating sheet

  • Thread starter Thread starter Node321
  • Start date Start date
N

Node321

i have one column that has three rows of info
name
street address, City, State Zipcode
phone number

how do i make it a column an input and a row for each name? like,
Name | Street Address | City | State | ZIPcode | Phone number

thanks in advanced
 
You are just trying to move data that is in mulitiple rows and single
column, to single row and multiple columns?

Then use Copy, PasteSpecial with Transpose:

Range("A1:A3").Select
Selection.Copy
Range("A4").Select
Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone,
SkipBlanks:=False, Transpose:=True
 
thanks
the thing is there are about 250 names
and i need it to to change from one column and three rows of info to
one row and 6 columns of info.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top