Kalpesh said:
selection.cells.font.size = selection.cells.font.size + 1
or -1 for reducing the font size.
HTH
Kalpesh
Thanks! This worked on individual cells. I checked the syntax I had that
worked on any selection and was able to modify slightly to something that
would work on one cell or many by removing "cells." to this:
INCREASING (+1 pt):
******************************************************************************
Sub FontSizeINCREASEonePoint()
ActiveSheet.Unprotect 'place at the beginning of the code
Selection.Font.Size = Selection.Font.Size + 1
ActiveSheet.Protect ' place at end of code
End Sub
******************************************************************************
DECREASING (-1 pt):
******************************************************************************
Sub FontSizeDECREASEonePoint()
ActiveSheet.Unprotect 'place at the beginning of the code
Selection.Font.Size = Selection.Font.Size - 1
ActiveSheet.Protect ' place at end of code
End Sub
******************************************************************************
I used for the icons in a floating toolbar, faceid's #39 and 40 (up and down
blue arrows).
Thanks! Always so easy once you know how <g>.

D