Sorry, It's not perfectly OK
In my test,
A1 empty
A2 empty
A3 Not empty
After I type something in A1, it return "Activecell is Empty", (it's ok)
But I type something in A2, it returns "activecell is not Empty"
I think that when I enter data in A2, when I press "Enter", the cursor will
move to A3, since the new Activecell is A3, so that is returns "not empty"
Can I check the cell before I enter the data?
> Sub tester()
> If IsEmpty(ActiveCell) Then
[quoted text clipped - 24 lines]
>>
>> Bobocat
Jim May - 06 Jul 2006 23:13 GMT
The Macro works on the Current activecell. That is, either before
or After you enter something in that cell. You're right
You probably have your Tools, Options set to have your
Cursor move to the next-downward cell once you enter something
In for example A4 - A4 is the target of your data, yet (afterwards)
A5 is active. So you would need to click again on cell A4 and run the
mcaro
It should tell you that A4 is not empty.
> Sorry, It's not perfectly OK
>
[quoted text clipped - 40 lines]
> >>
> >> Bobocat