+ Reply to Thread
Results 1 to 5 of 5

VBA hide row with strikethrough

Hybrid View

  1. #1
    Registered User
    Join Date
    10-20-2014
    Location
    The Netherlands
    MS-Off Ver
    2007
    Posts
    29

    Question VBA hide row with strikethrough

    Dear knowledgeable EF users,

    I am currently able to find and replace formatting of cells using the FindFormat function. However, I need the output of this function to hide rows. Does anybody here have a solution?

    Private Sub CBYes_Click()
    
    Application.FindFormat.Clear
    Application.FindFormat.Interior.Color = RGB(255, 255, 0)
    'Application.ReplaceFormat.Interior.ColorIndex = 2
    Application.ReplaceFormat.Interior.ColorIndex = xlColorIndexNone
    MAIN.Cells.Replace What:="", Replacement:="", SearchFormat:=True, ReplaceFormat:=True
    
    Application.FindFormat.Clear
    Application.FindFormat.Font.Strikethrough = True
    Application.ActiveCell.EntireRow.Hidden = True
    'Application.ActiveCell.MergeArea.EntireRow.Hidden = True
    Application.ReplaceFormat.Font.Strikethrough = False
    MAIN.Cells.Replace What:="", Replacement:="", SearchFormat:=True, ReplaceFormat:=True
    
    Unload Me
    
    End Sub

  2. #2
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: VBA hide row with strikethrough

    Does this help?

    Sub ChrisPatterson()
    Dim rcell As Range
    For Each rcell In ActiveSheet.UsedRange
    If rcell.Font.Strikethrough = True Then Rows(rcell.Row).Hidden = True
    Next rcell
    End Sub

  3. #3
    Registered User
    Join Date
    10-20-2014
    Location
    The Netherlands
    MS-Off Ver
    2007
    Posts
    29

    Re: VBA hide row with strikethrough

    Hi John,

    Yes, it certainly does help (with a bit of tweaking in my own code). Thanks very much. It is however a bit slow. Perhaps this is because the sheet it has to go through is nearly 1000 rows long and 22 cells wide? What do you think?

  4. #4
    Registered User
    Join Date
    10-20-2014
    Location
    The Netherlands
    MS-Off Ver
    2007
    Posts
    29

    Re: VBA hide row with strikethrough

    FYI, this is what the code looks like now:

    Private Sub CBYes_Click()
    
    Application.ScreenUpdating = False
    Application.FindFormat.Clear
    Application.FindFormat.Interior.Color = RGB(255, 255, 0)
    Application.ReplaceFormat.Interior.ColorIndex = xlColorIndexNone
    MAIN.Cells.Replace What:="", Replacement:="", SearchFormat:=True, ReplaceFormat:=True
    Application.ReplaceFormat.Clear
    
    Dim rCell As Range
    For Each rCell In ActiveSheet.UsedRange
        If rCell.Font.Strikethrough = True Then rows(rCell.Row).Hidden = True
    Next rCell
    
    Application.FindFormat.Clear
    Application.FindFormat.Font.Strikethrough = True
    Application.ReplaceFormat.Font.Strikethrough = False
    MAIN.Cells.Replace What:="", Replacement:="", SearchFormat:=True, ReplaceFormat:=True
    Application.ReplaceFormat.Clear
    
    Application.ScreenUpdating = True
    
    Unload Me
    
    End Sub

  5. #5
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: VBA hide row with strikethrough

    Try:

    Sub ChrisPatterson()
    Dim rcell As Range
    With Application
        .ScreenUpdating = False
        .Calculation = xlCalculationManual
    End With
    For Each rcell In ActiveSheet.UsedRange
    If rcell.Font.Strikethrough = True Then Rows(rcell.Row).Hidden = True
    Next rcell
    With Application
        .ScreenUpdating = True
        .Calculation = xlCalculationAutomatic
    End With
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Filter by Strikethrough
    By StreekyD in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-20-2013, 05:20 PM
  2. If then strikethrough
    By kosheboy in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-25-2013, 04:49 PM
  3. [SOLVED] Strikethrough a specified row
    By fatalcore in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 09-15-2012, 09:22 AM
  4. [SOLVED] strikethrough
    By herbzee in forum Excel General
    Replies: 7
    Last Post: 03-14-2006, 09:10 PM
  5. [SOLVED] Re:strikethrough
    By newbie in forum Excel General
    Replies: 2
    Last Post: 07-17-2005, 09:05 PM

Tags for this Thread

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