VBA: get CentreHeader from sheet

Archangelos

New Member
Joined
Aug 21, 2017
Messages
49
I searched in the Internet and I found tons of stuff related to setting Header/Footer (Left, Right, Centre). However, I am trying to do the opposite and I have not succeeded.

What I need is to get the text (ONLY THE TEXT) from CenterHeader.


The text of CenterHeader was "Greece".

I run the following command.
Cells(1, 20) = ActiveSheet.PageSetup.CenterHeader

The A20 cell got the following value:
&"Arial,Έντονα"&UGreece (The word "Έντονα" means Bold in Greek)

This not what I want. I need only the text ("Greece") without the properties of it.

I tried to experiment by changing the command but the debugger «complaint».
Cells(1, 20) = ActiveSheet.PageSetup.CenterHeader.Text FAILED
Cells(1, 20) = ActiveSheet.PageSetup.CenterHeader.Value FAILED
Cells(1, 20) = ActiveSheet.PageSetup.CenterHeader.Caption FAILED

Any ideas?
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Archangelos,

Welcome to the Board.

A couple of questions...
What version of Excel are you using?
What language of Excel are you using?

I ask because when I create a CenterHeader with the word "Greece" with an Arial, Bold font, the text in A20 is &"-,Bold"Greece

That said, the following might get you closer to what you're looking for...

Code:
Sub Headder()
    Dim tmp As Variant
    tmp = Split(ActiveSheet.PageSetup.CenterHeader, Chr(34))
    Cells(1, 20) = tmp(UBound(tmp))
End Sub

Cheers,

tonyyy
 
Upvote 0
1. Excel 2007
2. The language is Greek (it is mentioned in the first post)
3. I tested your code, it did not work perfectly. It was not your fault, it was mine (more details tomorrow, it's 2:16am local time)
4. I will check the split and unbound commands.

Thanks buddy.
 
Upvote 0
Running the code of tonyyy
When I run the code of tonyyy I got the following:
Initial string: &"Arial,Έντονα"&UGreece
Final string: &UGreece

It seems that I had changed something therefore it was not tonyyy's fault. I had added a single underline to the font.

The new situation
The font name and the bold/italic information are located in the first part of the string that can be removed with the ubound command. But what about the ampersand codes?

I decided to «play» a little with the font properties and run the code several times. Take a look at the various final strings I got.
&S&E&YGreece
&YGreece
&S&E&XGreece


What are the ampersand codes? Well, «playing» a little helped me demystify them (it was not rocket science).
&U: single underline
&E: double underline
&S: strikethrough
&X: superscript
&Y: subscript


After all these, I «played» with the code of tonyyy and i did the following.


Code:
Cells(1, 20) = ActiveSheet.PageSetup.CenterHeader
InitialString = Split(ActiveSheet.PageSetup.CenterHeader, Chr(34))
Cells(2, 20) = InitialString
Cells(3, 20) = InitialString(UBound(InitialString))


Cells(4, 20) = Cells(3, 20)


Cells(4, 20) = Replace(Cells(4, 20), "&U", "")
Cells(4, 20) = Replace(Cells(4, 20), "&E", "")
Cells(4, 20) = Replace(Cells(4, 20), "&S", "")
Cells(4, 20) = Replace(Cells(4, 20), "&X", "")
Cells(4, 20) = Replace(Cells(4, 20), "&Y", "")


I made the font bold and italic, with double underline, strikethrough and subscript. I run the code and got the following.
Initial string: &"Arial,Έντονα Πλάγια"&S&E&XGreece
Final string: Greece
 
Upvote 0
Archangelos - Glad you worked out a solution.
 
Upvote 0
However, a BIG question remains. How do i get the content of CenterHeader, etc?

There are millions of web pages showing hot to write to CenterHeader but there is no one telling how to read the bloody contents of bloody CenterHeader.

Any idea?
 
Upvote 0

Forum statistics

Threads
1,214,821
Messages
6,121,762
Members
449,048
Latest member
excelknuckles

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