View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
jasminesy jasminesy is offline
external usenet poster
 
Posts: 18
Default Please help with code.....

(Continued)

getting error...am I trying to do something I shouldn't...here is the
beginning of my sub...this is the only area I'm having a problem with...
error message reads:"Unable to set the PrintTitleRows property of the
page setup class"....


Sub props()
Dim myrows As Range
Titles = MsgBox("Do any rows need to repeat?", vbYesNo, "Repeating Titles")
If Titles = vbYes Then
Set myrows = Nothing
On Error Resume Next
Set myrows = Application.InputBox("Select rows to repeat at top", Type:=8)
On Error GoTo 0
If Not myrows Is Nothing Then
' rows were selected
Set myrows = myrows.EntireRow
' set the rows to repeat at top

With ActiveSheet.PageSetup
.PrintTitleRows = myrows ***this is the line of my problem
.PrintTitleColumns = ""
End With
Else: With ActiveSheet.PageSetup
.PrintTitleRows = ""
.PrintTitleColumns = ""
End With
End If
End If