View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
WannaBeExceller WannaBeExceller is offline
external usenet poster
 
Posts: 22
Default Is there a IsEmptyCell function in VBA?

That worked pretty well. Thank you.

"Norman Jones" wrote:

Hi WannaBe,

Try:

If IsEmpty(Range("A1")) Then

---
Regards,
Norman


"WannaBeExceller" wrote in
message ...
I was wondering if the is something within VBA that checks if a cell is
empty
or null. I would like to incorporate something like that within the code I
am
working on. thanks.