PC Review


Reply
Thread Tools Rate Thread

DisplayOutline

 
 
KC VBA Qns
Guest
Posts: n/a
 
      12th Dec 2006
Hi,

Can anyone help?

I always get True for ActiveWindow.DisplayOutline regardless if I
really have an outline or not. Has this to do with my Excel being 2002?

I need to determine if the sheet has an outline so as to collapse to
the appropriate level.

Rgds,

 
Reply With Quote
 
 
 
 
Dave Peterson
Guest
Posts: n/a
 
      12th Dec 2006
I think that's the equivalent of checking
Tools|options|view tab|outline symbols

Maybe you could use something like:

Option Explicit
Sub testme01()

Dim myRow As Range
Dim IsOutLineUsed As Boolean

IsOutLineUsed = False
For Each myRow In ActiveSheet.UsedRange.Rows
If myRow.OutlineLevel > 1 Then
IsOutLineUsed = True
Exit For
End If
Next myRow

MsgBox IsOutLineUsed

End Sub



KC VBA Qns wrote:
>
> Hi,
>
> Can anyone help?
>
> I always get True for ActiveWindow.DisplayOutline regardless if I
> really have an outline or not. Has this to do with my Excel being 2002?
>
> I need to determine if the sheet has an outline so as to collapse to
> the appropriate level.
>
> Rgds,


--

Dave Peterson
 
Reply With Quote
 
KC VBA Qns
Guest
Posts: n/a
 
      13th Dec 2006
Thanks, Dave.

Somehow my Excel 2002 does not come with this option:
Tools|options|view tab|outline symbols

I guess the equivalent is Ctrl-8. No?

Rgds,

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      13th Dec 2006
Look again. You'll see Outline Symbols in the bottom section in the middle
column.

But that's for viewing those symbols to the left of the worksheet.

KC VBA Qns wrote:
>
> Thanks, Dave.
>
> Somehow my Excel 2002 does not come with this option:
> Tools|options|view tab|outline symbols
>
> I guess the equivalent is Ctrl-8. No?
>
> Rgds,


--

Dave Peterson
 
Reply With Quote
 
KC VBA Qns
Guest
Posts: n/a
 
      13th Dec 2006
Thanks again.

My eyes must have played a trick earlier on. I thought I checked a
couple of times before writing.

Rgds,

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      13th Dec 2006
Welcome to the club!!!

KC VBA Qns wrote:
>
> Thanks again.
>
> My eyes must have played a trick earlier on. I thought I checked a
> couple of times before writing.
>
> Rgds,


--

Dave Peterson
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off



Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:54 PM.