Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I recieved a reply to this earlier asking if I really
wanted a1:ax1 and I do but I think it got me out of the loop to receive an answer so I am reposting this. Any help will be greatly appreciated. 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 .. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
How to end macro on inital active worksheet containing macro button that was clicked | Excel Programming | |||
macro to delete entire rows when column A is blank ...a quick macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |