Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to transpose 1 column into 3 columns:
Example: 1 2 3 4 5 6 7 8 9 ect... into 123 456 789 ect... Here is the code I have: ----------------------- Dim i As Long i = 1 Do While i < 3001 Range("A1:A3").Select Application.CutCopyMode = False Selection.Copy Range(Cells(i, 2), Cells(i, 3)).Select problem here--Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks_:=False , Transpose:=True Range("A1").Select Application.CutCopyMode = False Selection.Delete Shift:=xlUp i = i + 1 Loop --------------------------------------- It keeps hanging up he Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone, SkipBlanks_:=False , Transpose:=True I have no clue as why it is hanging...any help? Thanks, James |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I transpose data from rows to cols with a formula not pivot ta | Excel Worksheet Functions | |||
2 Cols To 2 Cols VLookup Comparison | Excel Discussion (Misc queries) | |||
Range.Select 1st pass 13 cols, 2nd paqss 25 cols twice as wide in error? | Excel Programming | |||
Macro for single to multiple cols. Help! | New Users to Excel | |||
Cond Format:re color 2 cols, skip 2 cols | Excel Worksheet Functions |