Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Autofilling next empty cell in column? | New Users to Excel | |||
find last none empty cell | Excel Discussion (Misc queries) | |||
Copy from row above if cell is empty in column | Excel Discussion (Misc queries) | |||
Find an empty cell and put a dash in it? | Excel Worksheet Functions | |||
Find a empty cell in next column | Excel Discussion (Misc queries) |