Results 1 to 5 of 5

hide unsequential columns in vba

Threaded View

  1. #1
    Registered User
    Join Date
    02-11-2009
    Location
    Raglan
    MS-Off Ver
    Excel 2003, 2007
    Posts
    28

    hide unsequential columns in vba

    Hi all,

    I'm using Excel 2003 and want to hide columns D:E & I:J. I have script as follows which hides I:J but I am unsure how to get it to include the other 2 columns. Grateful for any advice.

    Sub JobPricingCustomerPrint()
        Dim rPrt        As Range
    
        ActiveSheet.Protect DrawingObjects:=True, _
                            Contents:=True, _
                            Scenarios:=True, _
                            UserInterfaceOnly:=True
        With Columns("I:J")
            .Hidden = True
            With Range("K4")
                .Value = "Cost Each"
    
                Set rPrt = Cells.Find(What:="*", _
                                      After:=Cells(Rows.Count, Columns.Count), _
                                      SearchDirection:=xlPrevious)
                'Range("B1", Cells(rPrt.Row, "N")).PrintOut Copies:=1
                Range("B1", Cells(rPrt.Row, "N")).PrintPreview
    
                .Value = "Customer Cost Each"
            End With
            .Hidden = False
        End With
    End Sub
    Last edited by BongoBill; 11-13-2009 at 12:04 PM.

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