uploaded again, though it's ok for me when downloaded from post # 2 (files are identical, just in case in two different formats)
The code itself provided data starts in A1 cell:
Sub test()
Dim main As Workbook, NewWkb As Workbook, x, y, i As Long, n As Long, j As Long
Application.ScreenUpdating = 0
Set main = ActiveWorkbook
Set NewWkb = Workbooks.Add
For Each sh In main.Sheets
x = sh.Range("a1").CurrentRegion
colcount = UBound(x, 2)
ReDim y(1 To UBound(x), 1 To colcount)
For i = 25 To UBound(x) Step 25
j = j + 1
For n = 1 To colcount
y(j, n) = x(i, n)
Next
Next
Sheets.Add after:=Sheets(Sheets.Count)
ActiveSheet.Name = sh.Name
Range("a1").Resize(j, colcount) = y
j = 0
Next
Application.ScreenUpdating = 1
End Sub
Bookmarks