|
- <p>Sub 宏2()
- '
- ' 宏2 宏
- '</p><p>'
- Range("A2:D8").Select
- Selection.Copy
- Range("G2").Select
- Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
- False, Transpose:=True
- Range("A9:D15").Select
- Application.CutCopyMode = False
- Selection.Copy
- Range("G9").Select
- Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
- False, Transpose:=True
- Range("A16:D22").Select
- Application.CutCopyMode = False
- Selection.Copy
- Range("G16").Select
- Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
- False, Transpose:=True
- Range("A23:D29").Select
- Application.CutCopyMode = False
- Selection.Copy
- Range("G23").Select
- Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
- False, Transpose:=True
- End Sub
- </p>
- <p> </p>
复制代码
|
|