Automatic cut and paste - Microsoft Community
Office / Excel / Windows 10 / Office 2013
you can run macro:
sub moveheaders()
dim r long
dim m long
application.screenupdating = false
m = range("b" & rows.count).end(xlup).row
r = 1 m
if range("c" & r).value = "" then
range("b" & r).cut destination:=range("a" & r + 1)
end if
next r
application.cutcopymode = false
application.screenupdating = true
end sub
Office / Excel / Windows 10 / Office 2013
Comments
Post a Comment