Transfer data in column to rows in excel or macro

zabihsial

New Member
Joined
Jan 30, 2018
Messages
1
I have data of of over 2000 workers on Sheet1.
I want to transfered filtered Data to Sheet2.
Data of Sheet1 from A2 to D2 should transfer as it is.
Remaining data in Column E2:E13 on Sheet1 should transfer to Sheet2 to G1:R1
And data in Column F2:F13 on Sheet1 should transfer to Sheet2 to G2:R2
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Re: How to transfer data in column to rows in excel or macro??? Plz help

you can copy and paste data. Below is sample code.

sub test()


sheets("Sheet1").range("A1").copy
sheets("Sheet1").range("D1").pastespecial xlpastevalues, transpose

sheets("Sheet1").range("E2:E13").Copy
sheets("Sheet2").range("G1").pastespecial xlpastevalues, transpose

sheets("Sheet1").range("F2:F13").Copy
sheets("Sheet2").range("G2").pastespecial xlpastevalues, transpose
end sub
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,250
Members
452,623
Latest member
Techenthusiast

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