Applies To
Font Object.
Description
Returns or sets the size of the font. Read-write.
Example
This example sets the font size for cells A1:D10 on Sheet1.
With Worksheets("Sheet1").Range("A1:D10") .Value = "Test" .Font.Size = 12 End With