Hello all,
Always come here first to find what I am looking for and usually able to find something that I can amend.
However, this time I am not quite able to find what I need, I think this is due to not quite knowing how to search for it.
I have found lots of examples on how to transpose from one worksheet to another and this usually just involves one column.
Now to my issue,
On sheet 1 I have date in columns A - Z and any number of rows.
What is constant is that the rows repeat after 25 rows.
I want to be able to copy from rows 1 - 25 and columns A-Z and transpose to Sheet 2
Then copy the next 25 rows and columns A-Z and paste on Sheet 2 below the first range of data.
Continue of down Sheet1 transposing every 25 rows to Sheet 2 until end of data.
Below is how it looks if I record a macro for the first 2 sections I want to transpose and this would continue to the end of all used rows.
Any help would be great.
Am unable to upload example sheets due to firewall at work.
![]()
Sub Macro1() ' ' Macro1 Macro ' ' Range("A1:Z25").Select Application.CutCopyMode = False Selection.Copy Sheets("Sheet2").Select Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _ False, Transpose:=True Sheets("Sheet1").Select Range("A26:V50").Select Application.CutCopyMode = False Selection.Copy Sheets("Sheet2").Select Range("A23").Select ActiveSheet.Paste Range("A48").Select End Sub
Bookmarks