olafsinsight
New Member
- Joined
- Jan 27, 2014
- Messages
- 5
This is the goal: I need to get a huge column of numbers into a format to print for a binder. I have a macro that does it one row at a time, but there are 50,000 numbers in the column. I haven't gotten any loop macros to do anything for me yet. I also haven't been able to find an example of a loop that actually does something other than count, but I would love to see one.
This is how I am trying to do it:
I'm sure it's just a format issue, but it's making me feel pretty silly.
This is how I am trying to do it:
Code:
Sub Complete ()
Do Until Cells("K1:K11").Value = " "
Range("K1:K10").Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
Range("K1:K10").Delete Shift:=xlUp
ActiveCell.Offset(1, 0).Select
Loop
End Sub
I'm sure it's just a format issue, but it's making me feel pretty silly.