G gary Jan 24, 2012 #1 Is there a way to move cells whose contents begin with '0A' from Col B to Col C?
D Don Guillett Jan 24, 2012 #2 Is there a way to move cells whose contents begin with '0A' from Col B to Col C? Click to expand... option explicit sub moveem() dim c as range for each c in range("a2:a22") if ucase(left(c,2))="0A" then c.offset(,1)=c c="" end if next c end sub
Is there a way to move cells whose contents begin with '0A' from Col B to Col C? Click to expand... option explicit sub moveem() dim c as range for each c in range("a2:a22") if ucase(left(c,2))="0A" then c.offset(,1)=c c="" end if next c end sub