macro which looks in column and if it is blank deletes entire row

V

vikram

macro which looks in column and if it is blank deletes entire row


if sny row in column A is blank , macro deletes entire row

thanks
appreciate u al
 
D

DNF Karran

sub
dim currange as range
for each currange in range"A:A"
if currange.value = empty then currange.entirerow.delete
next
end sub

Untested as i have typed it straight into the editor....

Dunca
 
Top