View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default hide a page on a multipage control

Hi Spencer,

Try

With Me.MultiPage1.Pages("Page1")
If Range("C4") = "Yes" Then
.Visible = False
Else
.Visible = True
End If
End With


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Spencer Hutton" wrote in message
...
is their a way to hide a certain page on a multi page, given a certain
condition. say the Cell A1 contains the word "Yes" hide page 4, else do

not
hide page 4. TIA