Thread
:
find first empty cell in column and start transpose next row in that cell
View Single Post
#
2
Posted to microsoft.public.excel.programming
Don Guillett
external usenet poster
Posts: 10,124
find first empty cell in column and start transpose next row in that cell
See ans in your other post. Pls post in ONLY ONE group.
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"ali" wrote in message
ups.com...
Hi guys,
I have the following code to transpose one row into column without
blanks and zero's.
Dim lastcol As Long
Dim ws As Worksheet
Set ws = Worksheets("sheet10")
lastcol = ws.Cells(17, Columns.Count).End(xlToLeft).Column
With ws
.Range(Cells(17, 1), Cells(17, lastcol)).Replace 0, ""
.Range(.Cells(17, 1), .Cells(17,
lastcol)).SpecialCells(xlCellTypeConstants).Copy
.Range("A150").PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=True
End With
Application.CutCopyMode = False
I want to be able to transpose many rows into the same column and in
that column I want no empty cells.
row1: 1 2 blank 0 3
row2: 22 33 0 44
after transpose it will look as following:
1
2
3
22
33
44
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett