Thread
:
Delete Entire Row If Column C is Blank
View Single Post
#
2
Posted to microsoft.public.excel.programming
norika
external usenet poster
Posts: 1
Delete Entire Row If Column C is Blank
John
You may try the following
Columns("C:C").Select
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.Delete Shift:=xlUp
to replace
If Cells(r.Row, 3) = 0 Then r.EntireRow.Delete
HTH
noirk
--
Message posted from
http://www.ExcelForum.com
Reply With Quote
norika
View Public Profile
Find all posts by norika