Results 1 to 4 of 4

hiding columns using macro

Threaded View

  1. #1
    Registered User
    Join Date
    11-08-2006
    Posts
    30

    hiding columns using macro

    morning all....

    is there any macro function for hiding columns ? tried recording my macro and putting it into my existing workbook, but can't seem to get it to work..

    Private Sub CommandButton1_Click()
     
     Sheets("TAB_HVT_STANDORTE_SHELF_BB").Activate
     
     Search ("ONKZ")
     
    '3 columns are suppose to be hidden here
    
     Search ("HVT_NR")
     Search ("NE_KENNUNG")
     
     Sheets("BREITBAND").Activate
     
     
    End Sub
    
    
    Sub Search(ByVal strSrch As String)
         
        Dim xFind
        Dim rnge As Range
         
         
        If strSrch = "" Then Exit Sub
         
        With Sheets("TAB_HVT_STANDORTE_SHELF_BB")
            Set xFind = .UsedRange.Find(what:=strSrch, After:=Range("A1"), _
            LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByColumns, _
            SearchDirection:=xlNext, MatchCase:=False)
        End With
         
        If Not xFind Is Nothing Then
             
            With Sheets("BREITBAND")
                If .Range("B1").Value = "" Then
                    Set rnge = .Range("B1")
                ElseIf .Range("C1").Value = "" Then
                    Set rnge = .Range("C1")
                Else
                    Set rnge = .Range("B1").End(xlToRight).Cells(1, 2)
                End If
                xFind.EntireColumn.Copy Destination:=rnge
            End With
             
        Else
            MsgBox "Suchbegriff wurde nicht gefunden !"
        End If
         
    End Sub
    the bolded sentence states that in between those to 'searches', i need to hide 3 columns....any solutions ?

    thanks in advances

    mfg
    eddy
    Last edited by EddyAddelan; 11-14-2006 at 05:55 AM.

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