Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello NG,
Anyone knows why I keep getting the same debug.print result using the code below? Isn't in suppose to change? Any line of code that I need to add? Please help! Sub Testing() Dim i As Integer For i = 0 To 50 ActiveSheet.PageSetup.Zoom = 100 - i Debug.Print ActiveSheet.VPageBreaks(1).Location.Address Next i End Sub TIA Jon-jon |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You've typed pagebreaks(ONE) not pagebreaks(i)
JON JON wrote: Hello NG, Anyone knows why I keep getting the same debug.print result using the code below? Isn't in suppose to change? Any line of code that I need to add? Please help! Sub Testing() Dim i As Integer For i = 0 To 50 ActiveSheet.PageSetup.Zoom = 100 - i Debug.Print ActiveSheet.VPageBreaks(1).Location.Address Next i End Sub TIA Jon-jon |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Yes! that's one (1).
wrote in message oups.com... You've typed pagebreaks(ONE) not pagebreaks(i) JON JON wrote: Hello NG, Anyone knows why I keep getting the same debug.print result using the code below? Isn't in suppose to change? Any line of code that I need to add? Please help! Sub Testing() Dim i As Integer For i = 0 To 50 ActiveSheet.PageSetup.Zoom = 100 - i Debug.Print ActiveSheet.VPageBreaks(1).Location.Address Next i End Sub TIA Jon-jon |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please help!
"JON JON" wrote in message ... Yes! that's one (1). wrote in message oups.com... You've typed pagebreaks(ONE) not pagebreaks(i) JON JON wrote: Hello NG, Anyone knows why I keep getting the same debug.print result using the code below? Isn't in suppose to change? Any line of code that I need to add? Please help! Sub Testing() Dim i As Integer For i = 0 To 50 ActiveSheet.PageSetup.Zoom = 100 - i Debug.Print ActiveSheet.VPageBreaks(1).Location.Address Next i End Sub TIA Jon-jon |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry if I sound impatient but I just really need help fast.
"JON JON" wrote in message ... Please help! "JON JON" wrote in message ... Yes! that's one (1). wrote in message oups.com... You've typed pagebreaks(ONE) not pagebreaks(i) JON JON wrote: Hello NG, Anyone knows why I keep getting the same debug.print result using the code below? Isn't in suppose to change? Any line of code that I need to add? Please help! Sub Testing() Dim i As Integer For i = 0 To 50 ActiveSheet.PageSetup.Zoom = 100 - i Debug.Print ActiveSheet.VPageBreaks(1).Location.Address Next i End Sub TIA Jon-jon |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm confused - I've answered the question - you are looping through an
iteration of a loop i times, but each time you are displaying the Location.Address of ActiveSheet.VPageBreaks(ONE) and not the i'th VPageBreaks. JON JON wrote: Sorry if I sound impatient but I just really need help fast. "JON JON" wrote in message ... Please help! "JON JON" wrote in message ... Yes! that's one (1). wrote in message oups.com... You've typed pagebreaks(ONE) not pagebreaks(i) JON JON wrote: Hello NG, Anyone knows why I keep getting the same debug.print result using the code below? Isn't in suppose to change? Any line of code that I need to add? Please help! Sub Testing() Dim i As Integer For i = 0 To 50 ActiveSheet.PageSetup.Zoom = 100 - i Debug.Print ActiveSheet.VPageBreaks(1).Location.Address Next i End Sub TIA Jon-jon |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cant move pagebreak in PageBreak View in Excel2003 | Excel Worksheet Functions | |||
Excel 2000 PageBreak problem | Excel Discussion (Misc queries) | |||
PageBreak problem. How to improve performance? | Excel Programming | |||
Pagebreak function problem | Excel Programming | |||
Zoom problem | Excel Programming |