Right click on your sheet tab, left click on View Code, and paste this in. Modify for font size. The error trap is for the occasions when no formulas exist on the sheet.
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
Cells.SpecialCells(xlCellTypeFormulas, 23).Font.Size = 24
End Sub
Tom Urtis