I was wondering if someone can help right a macro for this problem I'm having (sorry I kindof new to the VBA world)..
I have a excel worksheet that kind on looks like:
somevalue1 someValue2 SomeValue3 someValue4
Using a macro is there a way to change that to look like this:
someValue1
someValue2
someValue3
someValue4
Here is what I have so far: (I think my logic for this is wrong)
I have a excel worksheet that kind on looks like:
somevalue1 someValue2 SomeValue3 someValue4
Using a macro is there a way to change that to look like this:
someValue1
someValue2
someValue3
someValue4
Here is what I have so far: (I think my logic for this is wrong)
Code:
Dim i As Integer
For i = 1 To 61
ActiveCell.Offset(0, 1).Select
Selection.Cut
ActiveCell.Offset(1, 0).Select
ActiveSheet.Paste
Next i
End Sub