When you select columns B to G then Go To==>Scpecial==>Blanks,OK
you can not write anything, I think or may be I don get your idea
What I try to do is get a Macro that will copy B2 to A3, C2 to A4, D2 to A5,
E2 to A6, F2 to A7; then you find another name below 6 more blank spaces.
Thanks
> Can it be this simple? I'm not positive that I understand what you're
> asking. But try this.
[quoted text clipped - 28 lines]
> >
> > Fernando
Dave Peterson - 30 Apr 2004 23:57 GMT
I think Anne thought that you were filling blank cells under B:G--not doing a
copy|paste special|Transpose (essentially).
Here's one that inserts the 6 rows and does the copy:
Option Explicit
Sub testme()
Dim FirstRow As Long
Dim LastRow As Long
Dim iRow As Long
Dim wks As Worksheet
Set wks = Worksheets("sheet1")
With wks
FirstRow = 1 'no headers???
LastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
For iRow = LastRow To FirstRow Step -1
.Cells(iRow, "A").Offset(1, 0).Resize(6, 1).EntireRow.Insert
.Cells(iRow, "B").Resize(1, 6).Copy
.Cells(iRow + 1, "A").PasteSpecial Transpose:=True
Next iRow
End With
End Sub
> When you select columns B to G then Go To==>Scpecial==>Blanks,OK
> you can not write anything, I think or may be I don get your idea
[quoted text clipped - 37 lines]
> > >
> > > Fernando

Signature
Dave Peterson
ec35720@msn.com