i have the following code:
i would like to somehow amend the line![]()
Sub DeleteID14CPMBlank() Range("L65518:O65518").Select Range(Selection, Selection.End(xlUp)).Select Selection.SpecialCells(xlCellTypeBlanks).Select Selection.Delete Shift:=xlUp End Sub
and make it go all the way up but then go down one row ... if that makes sense... (without selecting the cell)![]()
Range(Selection, Selection.End(xlUp)).Select
i've tried
but that doesnt work![]()
Range(Selection, Selection.End(xlUp)-1).Select
Bookmarks