Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In Excel, when I select Format then Style, I see a lot of style names.
May I know how I can reduce the list in one step, instead of selecting and deleting one by one. -- Thanks a million for your time and expert advice :-) Jaylin *****Jaylin Message ended******* |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could use a macro:
Option Explicit Sub testme() Dim myStyle As Style For Each myStyle In ThisWorkbook.Styles If myStyle.BuiltIn = True Then 'skip it Else myStyle.Delete End If Next myStyle End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Jaylin wrote: In Excel, when I select Format then Style, I see a lot of style names. May I know how I can reduce the list in one step, instead of selecting and deleting one by one. -- Thanks a million for your time and expert advice :-) Jaylin *****Jaylin Message ended******* -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using Format--Style only on certain cells (Excel 2003) | Excel Discussion (Misc queries) | |||
Changing from format style to list style | Excel Worksheet Functions | |||
format to a desired style and order | Excel Worksheet Functions | |||
How do I format numbers for French-style in Excel v.X for mac? | Excel Discussion (Misc queries) | |||
change bahttext format to different format style | Excel Worksheet Functions |