0
Sub sbCopyRangeToAnotherSheet()
Dim col As Integer
col = 1
For Each wks In Worksheets
If (wks.Name <> "Sheet23") Then
wks.Range("A1:z29").Copy Destination:=Sheets("Sheet23").Cells(1, col)
col = col + 25
End If
Next wks
End Sub
當我使用上面的代碼時,它只是將所有東西都加在一起。但我需要調換它,並將每張表單顯示在另一張下面,而不是彼此相鄰。我需要改變做什麼?轉換多張紙到一張紙上
其他 – 2014-10-31 08:54:08