S
Stuart
User's data is as follows:
G Data......................... 4 no 5 20
more Data ...............
etc
where G through 20 is in a single row, and therefore
Data occupies 3 rows.
I believe this gives me a complete record where the Data
occupies more than one row:
Sub TestConvertToWrapText()
Dim Cell As Range, StartRw As Long
Dim EndRw As Long
For Each Cell In ActiveSheet.Range("B2:B33")
If Not IsEmpty(Cell) Then
StartRw = Cell.Row
If Not IsEmpty(Cell.Offset(1, 0)) Then
EndRw = Cell.End(xlDown).Row
End If
End If
Next
End Sub
Can anyone please show me how to take this record
and paste it such that it occupies a single row?
Regards.
G Data......................... 4 no 5 20
more Data ...............
etc
where G through 20 is in a single row, and therefore
Data occupies 3 rows.
I believe this gives me a complete record where the Data
occupies more than one row:
Sub TestConvertToWrapText()
Dim Cell As Range, StartRw As Long
Dim EndRw As Long
For Each Cell In ActiveSheet.Range("B2:B33")
If Not IsEmpty(Cell) Then
StartRw = Cell.Row
If Not IsEmpty(Cell.Offset(1, 0)) Then
EndRw = Cell.End(xlDown).Row
End If
End If
Next
End Sub
Can anyone please show me how to take this record
and paste it such that it occupies a single row?
Regards.