how to change font size on calender

G

Guest

select a cell and pull-down:

Format > Cells... > Font and set the size. This will only affect your
entries, not the template.
 
G

Gord Dibben

Bert

Most of the Calendars from the Template Gallery have the day numbers inside
individual Text Boxes.

You can manually select these one by one and change the font size or use a
macro to cycle through each box.

To write specific code I would have to know which Calendar you have
downloaded.

For the 2005 12 month per page calendar this code will work.

Sub Change_Font()
Columns("B:H").Select
ActiveSheet.DrawingObjects.Select
For Each TextBox In Selection
With TextBox.Characters(Start:=1, Length:=2).Font
.Name = "Comic Sans MS"
.FontStyle = "Regular"
.Size = 14
.ColorIndex = xlAutomatic
End With
Next
Range("E3").Select
End Sub


Gord Dibben Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top