Article ID: 112785
Article Last Modified on 10/11/2006
=FORMAT.FONT?()In the above macro instruction, the question mark (?) tells Microsoft Excel to display the Font dialog box so that you can select the font changes to apply to the active selection.
Sub ChangeFontDialog()
Application.Dialogs(xlDialogFormatFont).Show
End Sub
This code displays a dialog box that changes the font of the current
selection. If you use xlDialogFont instead, you will modify the font of the
Normal style in the worksheet.
Dialogs
Additional query words: 5.00c constant XL
Keywords: kbprogramming KB112785