ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   .PrintTitleRows (https://www.excelbanter.com/excel-discussion-misc-queries/29630-printtitlerows.html)

Dr. M

.PrintTitleRows
 
Hello! I am having trouble with getting .PrintTitleRows to take a variable I
create that is equal to the row number I need. So instead of having:

.PrintTitleRows="$1:$1"

row_num = ActiveCell.Row
With ActiveSheet.PageSetup
.PrintTitleRows = row_num & row_num

only this does not work!! Any suggestions? Thanks in advance.

--
Dr. M

Dr. M

For those of you keeping track at home:

row_num = ActiveCell.Row
'make value printtitlerows will accept
header_row = "$" & row_num & ":$" & row_num

With ActiveSheet.PageSetup
.PrintTitleRows = header_row
End With

--
Dr. M


"Dr. M" wrote:

Hello! I am having trouble with getting .PrintTitleRows to take a variable I
create that is equal to the row number I need. So instead of having:

.PrintTitleRows="$1:$1"

row_num = ActiveCell.Row
With ActiveSheet.PageSetup
.PrintTitleRows = row_num & row_num

only this does not work!! Any suggestions? Thanks in advance.

--
Dr. M


JE McGimpsey

No need for the "$"s or the With...End With.

Dim row_num As Long
row_Num = ActiveCell.Row
ActiveSheet.PageSetup.PrintTitleRows = row_num & ":" & row_num


In article ,
"Dr. M" wrote:

For those of you keeping track at home:

row_num = ActiveCell.Row
'make value printtitlerows will accept
header_row = "$" & row_num & ":$" & row_num

With ActiveSheet.PageSetup
.PrintTitleRows = header_row
End With



All times are GMT +1. The time now is 08:40 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com