+ Reply to Thread
Results 1 to 7 of 7

Find and Replace a Style

  1. #1
    Jim Bennett
    Guest

    Find and Replace a Style

    Can you find and replace a style in Excel?

  2. #2
    Peter Ellis
    Guest

    RE: Find and Replace a Style

    When you modify a style, Excel automatically applies the changes to all
    styles in the workbook. You can copy the style if you want to save the
    original.

    "Jim Bennett" wrote:

    > Can you find and replace a style in Excel?


  3. #3
    Jim Bennett
    Guest

    RE: Find and Replace a Style

    Thanks for your post!
    My problem is that I already have 2 styles in use in the spreadsheet and I
    only want to use one of them. I have many cells using both styles and I want
    them all to use just one. I am familiar with the procedure in Word but I
    can't seem to find the same functionality in Excel.

    "Peter Ellis" wrote:

    > When you modify a style, Excel automatically applies the changes to all
    > styles in the workbook. You can copy the style if you want to save the
    > original.
    >
    > "Jim Bennett" wrote:
    >
    > > Can you find and replace a style in Excel?


  4. #4
    Dave Peterson
    Guest

    Re: Find and Replace a Style

    You could use a macro to loop through all the cells--or just the cells you're
    using:

    Option Explicit
    Sub testme()

    Dim myCell As Range
    Dim myRng As Range

    With ActiveSheet
    Set myRng = .UsedRange
    For Each myCell In myRng.Cells
    If myCell.Style = "BadStyle" Then
    myCell.Style = "GoodStyle"
    End If
    Next myCell
    End With
    End Sub

    Replace badstyle and goodstyle with the styles you want.

    If you're new to macros, you may want to read David McRitchie's intro at:
    http://www.mvps.org/dmcritchie/excel/getstarted.htm

    Be aware that this code only looks at the used range--so if you applied a style
    to a whole column, this macro would only do the change in the used range area
    (between the top left cell of the worksheet (usually A1, but not always) and the
    cell you get when you do ctrl-end).

    Jim Bennett wrote:
    >
    > Thanks for your post!
    > My problem is that I already have 2 styles in use in the spreadsheet and I
    > only want to use one of them. I have many cells using both styles and I want
    > them all to use just one. I am familiar with the procedure in Word but I
    > can't seem to find the same functionality in Excel.
    >
    > "Peter Ellis" wrote:
    >
    > > When you modify a style, Excel automatically applies the changes to all
    > > styles in the workbook. You can copy the style if you want to save the
    > > original.
    > >
    > > "Jim Bennett" wrote:
    > >
    > > > Can you find and replace a style in Excel?


    --

    Dave Peterson

  5. #5
    Jim Bennett
    Guest

    Re: Find and Replace a Style

    That is great Dave. I used it and it worked perfectly.
    You also enlightened my on the ActiveSheet.UsedRange property!!

    "Dave Peterson" wrote:

    > You could use a macro to loop through all the cells--or just the cells you're
    > using:
    >
    > Option Explicit
    > Sub testme()
    >
    > Dim myCell As Range
    > Dim myRng As Range
    >
    > With ActiveSheet
    > Set myRng = .UsedRange
    > For Each myCell In myRng.Cells
    > If myCell.Style = "BadStyle" Then
    > myCell.Style = "GoodStyle"
    > End If
    > Next myCell
    > End With
    > End Sub
    >
    > Replace badstyle and goodstyle with the styles you want.
    >
    > If you're new to macros, you may want to read David McRitchie's intro at:
    > http://www.mvps.org/dmcritchie/excel/getstarted.htm
    >
    > Be aware that this code only looks at the used range--so if you applied a style
    > to a whole column, this macro would only do the change in the used range area
    > (between the top left cell of the worksheet (usually A1, but not always) and the
    > cell you get when you do ctrl-end).
    >
    > Jim Bennett wrote:
    > >
    > > Thanks for your post!
    > > My problem is that I already have 2 styles in use in the spreadsheet and I
    > > only want to use one of them. I have many cells using both styles and I want
    > > them all to use just one. I am familiar with the procedure in Word but I
    > > can't seem to find the same functionality in Excel.
    > >
    > > "Peter Ellis" wrote:
    > >
    > > > When you modify a style, Excel automatically applies the changes to all
    > > > styles in the workbook. You can copy the style if you want to save the
    > > > original.
    > > >
    > > > "Jim Bennett" wrote:
    > > >
    > > > > Can you find and replace a style in Excel?

    >
    > --
    >
    > Dave Peterson
    >


  6. #6
    Registered User
    Join Date
    11-04-2019
    Location
    London, England
    MS-Off Ver
    Office 2019
    Posts
    1

    Re: Find and Replace a Style

    Hi, Just adding to that question, is there a way to search for the cell(s) that are using a particular styles. Thanks. -Keith

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Find and Replace a Style

    Quote Originally Posted by KetihHoward View Post
    Hi, Just adding to that question, is there a way to search for the cell(s) that are using a particular styles. Thanks. -Keith
    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #4 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1