doug.washburn
New Member
- Joined
- May 18, 2004
- Messages
- 49
Hi,
I have a macro that takes an active cell, resizes the selection and then copies and transposes that data onto a secon sheet.
ActiveCell.Resize(1, 28).copy
Sheets("transposed data").Select
Range("B4").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Now I need to use the same macro but instead of re-sizing a single cell, the user could select 1, 2, 3 or more cells in a column and I need to resize their selection across 28 columns.
Any ideas?
I have a macro that takes an active cell, resizes the selection and then copies and transposes that data onto a secon sheet.
ActiveCell.Resize(1, 28).copy
Sheets("transposed data").Select
Range("B4").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Now I need to use the same macro but instead of re-sizing a single cell, the user could select 1, 2, 3 or more cells in a column and I need to resize their selection across 28 columns.
Any ideas?