+ Reply to Thread
Results 1 to 2 of 2

Hide Row Macro Fault

  1. #1
    Registered User
    Join Date
    04-14-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    83

    Hide Row Macro Fault

    I am using the following Macro to Hide and Unhide rows. It was working fine for a long time. I have made a few changes to the sheets but I haven' t made any changes to the Macro. Now I am gettng a "Type mismatch" Fault and I don't know why.


    Sub Hide()
    Dim i As Long

    Application.ScreenUpdating = False
    For i = 1 To ActiveSheet.Cells(ActiveSheet.Rows.Count, 1).End(xlUp).Row
    If Cells(i, 1).Value = 0 Then
    Cells(i, 1).EntireRow.Hidden = True
    End If

    Next i
    Application.ScreenUpdating = True

    End Sub
    Sub Unhide()
    Dim i As Long
    Application.ScreenUpdating = False
    For i = 1 To ActiveSheet.Cells(ActiveSheet.Rows.Count, 1).End(xlUp).Row
    If Cells(i, 1).EntireRow.Hidden = True Then

    Cells(i, 1).EntireRow.Hidden = False

    End If

    Next i


    Thanks for your help.

  2. #2
    Forum Guru
    Join Date
    03-02-2006
    Location
    Los Angeles, Ca
    MS-Off Ver
    WinXP/MSO2007;Win10/MSO2016
    Posts
    12,941

    Re: Hide Row Macro Fault

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code. Posting code without them makes your code hard to read and difficult to be copied for testing. Highlight your code and click the # at the top of your post window. For more information about these and other tags, found here
    Ben Van Johnson

+ 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