Move Column information to a row on another sheet.

p0is0n0us

New Member
Joined
Apr 2, 2014
Messages
19
Hi all,

I was wondering if someone could help me with this. I'm making a spreadsheet that has a form like page on one sheet and I would like that information transferred to a row on another page.

The data is in a column on a sheet called TECH SHEET and the range of data is C6:C83

I would like that range of data moved to the next blank row on a sheet called LINE DATA to make a table. After the headers the blank range starts a C3:BF3 and would make a table downwards.

Any help you could give me would be appreciated.

Gaz
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi

One way
Code:
Sub CopyTranspose()
    Dim lr As Long
    lr = Sheets("LINE DATA").Cells(Rows.Count, "C").End(xlUp).Row + 1
    With Sheets("TECH SHEET")
        .Range("C6:C83").Copy
    
        Sheets("LINE DATA").Range("C" & lr).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=True
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,801
Messages
6,121,644
Members
449,045
Latest member
Marcus05

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top