View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
JDMils JDMils is offline
external usenet poster
 
Posts: 5
Default Select Multipage by name?

Dave & Ron,

That's exactly what I was after, a bit long winded but useful.

FYI, I thought that if you could do:

Range("MyNamedRange").Select

Then it seems strange that you can't do the same with Multipages. LoL


--

|
+-- JDMils
|

"Dave Peterson" wrote in message
...
You could use something like:

With Me.MultiPage1
.Value = .Pages("p13").Index
End With

You did mean the name, not the caption, right?


Julian wrote:

I have a multipage on a form with one particular page named "p13". Can I
select that page by its name "p13"?

Excel 2003.

--
|
+-- Julian
|


--

Dave Peterson