New Line in headers with VBA

smit3446

New Member
Joined
Nov 16, 2015
Messages
44
I'm trying to have my header say:

Apples
Oranges
Bananas

But my code is giving an output of...

Apples

Oranges

Bananas

...with an extra line break in there. How do I fix this?

Here is my current code:

Code:
Sub header_footer_unscale()Dim ws As Worksheet




For Each ws In ActiveWorkbook.Worksheets
   
    With ws.PageSetup
        .ScaleWithDocHeaderFooter = False
        .TopMargin = Application.InchesToPoints(0.9)
        .RightHeader = "Apples" & vbNewLine & "Oranges" & vbNewLine & "Bananas"
        
    End With
    ActiveWindow.View = xlNormalView
    Range("A1").Activate
    
Next
            
End Sub

Thanks!
 
Last edited:

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Thank you, this worked. New question - I want my text in my header to be Bold, size 8, arial narrow, and a certain kind of purple that my company uses for its branding. I can't figure out the syntax for this code. This is what I had...
Code:
Sub header_footer_unscale()Dim ws As Worksheet




For Each ws In ActiveWorkbook.Worksheets
   
    With ws.PageSetup
        .ScaleWithDocHeaderFooter = False
        .TopMargin = Application.InchesToPoints(0.9)
        .RightHeader =&B &"Arial Narrow" &08 "Apples" & vbNewLine & "Oranges" & vbNewLine & "Bananas"
        
    End With
    ActiveWindow.View = xlNormalView
    Range("A1").Activate
    
Next
            
End Sub

I have no idea how to figure out the "hexadecimal" of the required purple I need. The RGB color for the purple is:

R: 112
G: 32
B: 130
 
Upvote 0

Forum statistics

Threads
1,215,235
Messages
6,123,779
Members
449,123
Latest member
StorageQueen24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top