Whilst if cell.value = "" will pick up empty cells, it'll also pick up cells with a formula that returns "" like
=if(A1="","","Blah Blah"
If you want to pick up truly empty cells only, use ISEMPTY ie
If ISEMPTY(range("A1") then
msgbox "Empty"
else
end if Rgds
Geoff "Some cause happiness wherever they go; others whenever they go."
-Oscar Wilde
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.