Results 1 to 16 of 16

complicated hide/unhide rows on protected sheet

Threaded View

  1. #4
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: complicated hide/unhide rows on protected sheet

    I added some formulas into your column Y yellow cells that will put an "X" in the rows that are to be hidden.
    I added a BeforePrint macro into your ThisWorkbook module which will hide all the rows with text showing in column Y, print, then unhide.

    Private Sub Workbook_BeforePrint(Cancel As Boolean)
        Application.EnableEvents = False
        Cancel = True
        With Sheets("Budget Sheet")
            .Range("Y:Y").SpecialCells(xlCellTypeFormulas, 2).EntireRow.Hidden = True
            .PrintOut
            .Range("Y:Y").SpecialCells(xlCellTypeFormulas, 2).EntireRow.Hidden = False
        End With
        Application.EnableEvents = True
    End Sub
    If you're satisfied with the results, you can hide column Y.
    Attached Files Attached Files

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