A
ali
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
would greatly appreciate your help.
Thanks
ali
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
would greatly appreciate your help.
Thanks
ali