Ed wrote:
> In Excel 2000 VBA, is there one single command to toggle a Boolean - that
> is, in whatever state it's in, change it to the opposite? I know it can be
> done with an If / Else - I was just wondering if there was a singe-line way
> to do it.
>
> Ed
>
>


----------------

Dim Flag as Boolean
Flag = not(Flag)

Bill