Macro
I only want row 1 from columns a through ax for all
sheets.
-----Original Message-----
From what I can see you only used
a1:ax1
do you want a1:ax100???
--
Don Guillett
SalesAid Software
"Cindy" wrote in
message
...
I am trying to write a macro that allows the user to
pick
a font and then applies it to certain parts of the
worksheet.
Using the macro below, everything works fine except
that
it is only changing the fonts on the column and row
headers. i.e.: The A, B, C etc that defines the
column
or likewise the 1, 2, 3 etc that defines the row.
I think I'm close but cant figure out what I'm doing
wrong. Any help will be greatly appreciated.
ChangeFont Macro
' Macro recorded 05/12/2004 by Cindy Jordan
'
Dim dlgAnswer As Boolean
Dim objFontChoice As Font
Sheets("MedRates").Select
Range("a1").Select
dlgAnswer = Application.Dialogs(xlDialogFont).Show
If dlgAnswer = False Then Exit Sub
Set objFontChoice = Selection.Font
Sheets(Array
("Coversheet", "MedRates", "MedBenefits", "DentalRates", _
"DentalBenefits", "STD", "LTD", "Life")).Select
Sheets("MedRates").Select
Range("a1:ax1").Select
With Selection.Font
.Name = objFontChoice.Name
End With
Range("A1").Select
Sheets("MedRates").Select
.
|