Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default hide a page on a multipage control

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


  #2   Report Post  
Posted to microsoft.public.excel.programming
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




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
MultiPage control Patrick Simonds Excel Worksheet Functions 1 August 5th 06 05:32 PM
Events for Controls in a Multipage Control George[_18_] Excel Programming 4 February 18th 04 05:56 PM
MultiPage control George[_18_] Excel Programming 0 February 6th 04 03:33 PM
Multipage control on Excel VBA forms James Garner Excel Programming 2 December 4th 03 06:37 AM
Multipage control Neil Excel Programming 2 September 15th 03 01:24 PM


All times are GMT +1. The time now is 09:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"