Thread: Not Nothing
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ArthurJ ArthurJ is offline
external usenet poster
 
Posts: 32
Default Not Nothing

This works:

If ActiveChart Is Nothing Then
**code**
End If

But what I need is the reverse of this, as in ...

If ActiveChart Is 'Not' Nothing, or
If ActiveChart is 'Something'

Of course neither of these work.

How do I do this?

Art