Hi,
Is there line/s of code like
if activecell = "" then go here
if not continue code
Thanks
Darren
Ardus Petus - 22 Mar 2006 15:54 GMT
if Activecell.Value = "" then
do something
else
do something else
endif
HTH
--
AP
> Hi,
>
[quoted text clipped - 6 lines]
>
> Darren
FIRSTROUNDKO - 22 Mar 2006 16:39 GMT
AP,
Thanks just perfect
Darren
>if Activecell.Value = "" then
> do something
[quoted text clipped - 11 lines]
>>
>> Darren
Martin - 22 Mar 2006 16:01 GMT
If ActiveCell.Value = "" Then
[code if true]
ElseIf [another condition if you like] Then
[code if true]
Else
[code if false]
End If
> Hi,
>
[quoted text clipped - 6 lines]
>
> Darren