Hello, I have a starter sheet in Excel where to change the date (like 2023-07) and i want to update every other sheet with that "date" in the right footer in font size 18. I've managed to get 2023-07 everywhere but the fontsize doesn't fit.
Sub testfooter_date()
Dim datum As String
datum = Sheets("Startersheet").Range("C2")
Sheets("table1").Select
With ActiveSheet.PageSetup
.RightFooter = datum
End With
If I try to change that with what I found online the "-07" is huge in the excel background (hard to describe that correctly) and nothing in the right footer, but it works perfectly fine if there is only a text like "test" . Sadly i can't upload a screenshot (always an error)
datum = Sheets("Startersheet").Range("C2")
ActiveSheet.PageSetup.RightFooter = "&""Calibri""&18" & Sheets("Startersheet").Range("C2")
I hope my problem is formulated understandably
Thank you in advance
Win11 - Office 365