Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 77
Default using Evaluate on a Name object?

If you are interested, the old Excel 4 macro help file is still available
for download from Microsoft.

Macrofun.exe File Available on Online Services
http://support.microsoft.com/default...85&Product=xlw

--
Dana DeLouis
Using Windows XP & Office XP
= = = = = = = = = = = = = = = = =


RefersToR1C1:="=GET.DOCUMENT(64,""Sheet1"")"

What does the 64 represent? The number of rows?


It was this line -- "=GET.DOCUMENT(64,""Sheet1"")" --
which really stumped me. I could not find any
documentation on Get.Document(64,""...""). I would be
grateful if someone could explain to me about

Get.Document
(in Excel in this example) or point me to an article or
some source.




  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default using Evaluate on a Name object?

Thanks. I will give that a try.


-----Original Message-----
If you are interested, the old Excel 4 macro help file is

still available
for download from Microsoft.

Macrofun.exe File Available on Online Services
http://support.microsoft.com/default.aspx?scid=kb;en-

us;128185&Product=xlw

--
Dana DeLouis
Using Windows XP & Office XP
= = = = = = = = = = = = = = = = =


RefersToR1C1:="=GET.DOCUMENT(64,""Sheet1"")"

What does the 64 represent? The number of rows?


It was this line -- "=GET.DOCUMENT(64,""Sheet1"")" --
which really stumped me. I could not find any
documentation on Get.Document(64,""...""). I would be
grateful if someone could explain to me about

Get.Document
(in Excel in this example) or point me to an article or
some source.




.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default using Evaluate on a Name object?

OK! That help file did the trick. Now this makes sense.
I am just curious why Microsoft isn't including these help
files with the later versions of Excel if that older
functionality is still available. There must a way to do
the same thing with pagebreaks for named ranges in the
later version - without having to look at EntireRow or
EntireColumn. Oh well, at least I have some solutions
now.

Thank you all for your help.
Rich

-----Original Message-----
If you are interested, the old Excel 4 macro help file is

still available
for download from Microsoft.

Macrofun.exe File Available on Online Services
http://support.microsoft.com/default.aspx?scid=kb;en-

us;128185&Product=xlw

--
Dana DeLouis
Using Windows XP & Office XP
= = = = = = = = = = = = = = = = =


RefersToR1C1:="=GET.DOCUMENT(64,""Sheet1"")"

What does the 64 represent? The number of rows?


It was this line -- "=GET.DOCUMENT(64,""Sheet1"")" --
which really stumped me. I could not find any
documentation on Get.Document(64,""...""). I would be
grateful if someone could explain to me about

Get.Document
(in Excel in this example) or point me to an article or
some source.




.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 77
Default using Evaluate on a Name object?

Your code works fine, but would any ideas here help?

Sub Demo()
Dim aRow As Range

With Range("A1:L97")
For Each aRow In .EntireRow.Rows
Select Case aRow.PageBreak
Case xlAutomatic
Debug.Print "Automatic pgbreak at Row: " & aRow.Row
Case xlPageBreakManual
Debug.Print "Manual pgbreak at Row: " & aRow.Row
End Select
Next aRow
End With
End Sub

--
Dana DeLouis
Using Windows XP & Office XP
= = = = = = = = = = = = = = = = =


"Rich" wrote in message
...
OK! That help file did the trick. Now this makes sense.
I am just curious why Microsoft isn't including these help
files with the later versions of Excel if that older
functionality is still available. There must a way to do
the same thing with pagebreaks for named ranges in the
later version - without having to look at EntireRow or
EntireColumn. Oh well, at least I have some solutions
now.

Thank you all for your help.
Rich

-----Original Message-----
If you are interested, the old Excel 4 macro help file is

still available
for download from Microsoft.

Macrofun.exe File Available on Online Services
http://support.microsoft.com/default.aspx?scid=kb;en-

us;128185&Product=xlw

--
Dana DeLouis
Using Windows XP & Office XP
= = = = = = = = = = = = = = = = =


RefersToR1C1:="=GET.DOCUMENT(64,""Sheet1"")"

What does the 64 represent? The number of rows?


It was this line -- "=GET.DOCUMENT(64,""Sheet1"")" --
which really stumped me. I could not find any
documentation on Get.Document(64,""...""). I would be
grateful if someone could explain to me about
Get.Document
(in Excel in this example) or point me to an article or
some source.




.



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
2 Label Options - Forms Object vs Control Box Object Awrex Excel Discussion (Misc queries) 3 July 17th 09 07:10 PM
Object Variable Not Set Error on Selection object Jean Excel Worksheet Functions 3 July 24th 06 06:45 PM
Range object to Array object conversion Myrna Larson[_2_] Excel Programming 1 August 1st 03 02:27 AM
Range object to Array object conversion Alan Beban[_3_] Excel Programming 0 August 1st 03 01:24 AM
Range object to Array object conversion Tom Ogilvy Excel Programming 0 August 1st 03 12:16 AM


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

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

About Us

"It's about Microsoft Excel"