I copy the following from a web page that was 4 column of rows. I pasted it in excel and showed up in one column.
9/26/2019 11:15
BTC
0.03142971
Completed
9/19/2019 12:01
BTC
0.02388444
Completed
9/10/2019 20:46
RVN
2414.582
Completed
There are more than 100 of these groups in one column. I tried to create a macro to transpose them all but I do not know how to make it repeat until all groups are transposed.
The following is what I did. Please help. Thanks
' Macro2 Macro
'
'
Range("D6:D9").Select
Selection.Copy
Range("F6").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Range("D11:D14").Select
Application.CutCopyMode = False
Selection.Copy
Range("F11").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Range("D16:D19").Select
Application.CutCopyMode = False
Selection.Copy
Range("F16").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
End Sub
9/26/2019 11:15
BTC
0.03142971
Completed
9/19/2019 12:01
BTC
0.02388444
Completed
9/10/2019 20:46
RVN
2414.582
Completed
There are more than 100 of these groups in one column. I tried to create a macro to transpose them all but I do not know how to make it repeat until all groups are transposed.
The following is what I did. Please help. Thanks
' Macro2 Macro
'
'
Range("D6:D9").Select
Selection.Copy
Range("F6").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Range("D11:D14").Select
Application.CutCopyMode = False
Selection.Copy
Range("F11").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Range("D16:D19").Select
Application.CutCopyMode = False
Selection.Copy
Range("F16").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
End Sub