+ Reply to Thread
Results 1 to 2 of 2

Edit this macro code to loop and end

  1. #1
    GarToms
    Guest

    Edit this macro code to loop and end


    I use this macro code to delete columns in a table that are headed 'No
    BU'. Currently I press it until all the 'No BU' columns are deleted.
    Once all the columns have been deleted it displays a 91 error.

    Does anyone know how to edit this macro code to loop it (so i dont have
    to repress the button), and finish the macro when there are no more 'No
    BU' columns to delete (without the error).

    Sub DeleteColumns()
    '
    ' DeleteColumns Macro
    ' Macro recorded 27/01/2006 by Corus
    '

    '
    Cells.Find(What:="No BU", After:=ActiveCell, LookIn:=xlFormulas,
    LookAt _
    :=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext,
    MatchCase:= _
    False).Activate
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Delete Shift:=xlToLeft
    ActiveWindow.LargeScroll ToRight:=-5
    Range("B10").Select
    End Sub


    --
    GarToms

  2. #2
    Kevin B
    Guest

    RE: Edit this macro code to loop and end

    You can try this:

    Sub DelCol()

    Dim iColCount As Integer
    Dim varVal As Variant

    Range("A1").Select
    varVal = ActiveCell.Value

    Do Until iColCount = 256
    varVal = ActiveCell.Value
    If varVal = "No BU" Then Selection.EntireColumn.Delete
    If ActiveCell.Column <> 256 Then ActiveCell.Offset(0, 1).Select
    iColCount = iColCount + 1
    Loop

    --
    Kevin Backmann


    "GarToms" wrote:

    >
    > I use this macro code to delete columns in a table that are headed 'No
    > BU'. Currently I press it until all the 'No BU' columns are deleted.
    > Once all the columns have been deleted it displays a 91 error.
    >
    > Does anyone know how to edit this macro code to loop it (so i dont have
    > to repress the button), and finish the macro when there are no more 'No
    > BU' columns to delete (without the error).
    >
    > Sub DeleteColumns()
    > '
    > ' DeleteColumns Macro
    > ' Macro recorded 27/01/2006 by Corus
    > '
    >
    > '
    > Cells.Find(What:="No BU", After:=ActiveCell, LookIn:=xlFormulas,
    > LookAt _
    > :=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext,
    > MatchCase:= _
    > False).Activate
    > Range(Selection, Selection.End(xlDown)).Select
    > Selection.Delete Shift:=xlToLeft
    > ActiveWindow.LargeScroll ToRight:=-5
    > Range("B10").Select
    > End Sub
    >
    >
    > --
    > GarToms
    >


+ 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