Results 1 to 3 of 3

Merge similar codes into one

Threaded View

  1. #1
    Forum Contributor
    Join Date
    11-07-2005
    Posts
    280

    Merge similar codes into one

    Hi everyone,

    I have the following seven codes used to fill a ListBox with data retrieved form a range (DACNRange).. they are almost the same .. the only difference between them is the range column number (highlighted with red) ..

    Instead of these seven similar codes, Can we create a general code replaces them all?


    Sub ByContNum()
    
    With DACNRange
        W = 0
        F = 1
        Do Until F = .Rows.Count + 1
            If InStr(1, .Cells(F, 1), Frame1.ActiveControl, 1) = 1 And .Cells(F, 4) = UserUnit Then
                ListBox1.AddItem .Cells(F, 1)
                ListBox1.List(W, 1) = MDF(.Cells(F, 2))
                ListBox1.List(W, 2) = .Cells(F, 7)
                ListBox1.List(W, 3) = .Cells(F, 5)
                ListBox1.List(W, 4) = .Cells(F, 6)
                ListBox1.List(W, 5) = .Cells(F, 9)
            W = W + 1
            End If
            F = F + 1
        Loop
    End With
    
    End Sub
    Sub ByDate()
    
    With DACNRange
        W = 0
        F = 1
        Do Until F = .Rows.Count + 1
            If InStr(1, .Cells(F, 2), MyDate, 1) = 1 And .Cells(F, 4) = UserUnit Then
                ListBox1.AddItem .Cells(F, 1)
                ListBox1.List(W, 1) = MDF(.Cells(F, 2))
                ListBox1.List(W, 2) = .Cells(F, 7)
                ListBox1.List(W, 3) = .Cells(F, 5)
                ListBox1.List(W, 4) = .Cells(F, 6)
                ListBox1.List(W, 5) = .Cells(F, 9)
            W = W + 1
            End If
            F = F + 1
        Loop
    End With
    
    End Sub
    Sub ByActType()
    
    With DACNRange
        W = 0
        F = 1
        Do Until F = .Rows.Count + 1
            If InStr(1, .Cells(F, 3), MyDate, 1) = 1 And .Cells(F, 4) = UserUnit Then
                ListBox1.AddItem .Cells(F, 1)
                ListBox1.List(W, 1) = MDF(.Cells(F, 2))
                ListBox1.List(W, 2) = .Cells(F, 7)
                ListBox1.List(W, 3) = .Cells(F, 5)
                ListBox1.List(W, 4) = .Cells(F, 6)
                ListBox1.List(W, 5) = .Cells(F, 9)
            W = W + 1
            End If
            F = F + 1
        Loop
    End With
    
    End Sub
    
    Sub ByTechName()
    
    With DACNRange
        W = 0
        F = 1
        Do Until F = .Rows.Count + 1
            If InStr(1, .Cells(F, 5), Frame1.ActiveControl, 1) = 1 And .Cells(F, 4) = UserUnit Then
                ListBox1.AddItem .Cells(F, 1)
                ListBox1.List(W, 1) = MDF(.Cells(F, 2))
                ListBox1.List(W, 2) = .Cells(F, 7)
                ListBox1.List(W, 3) = .Cells(F, 5)
                ListBox1.List(W, 4) = .Cells(F, 6)
                ListBox1.List(W, 5) = .Cells(F, 9)
            W = W + 1
            End If
            F = F + 1
        Loop
    End With
    
    End Sub
    Sub ByArea()
    
    With DACNRange
        W = 0
        F = 1
        Do Until F = .Rows.Count + 1
            If InStr(1, .Cells(F, 6), Frame1.ActiveControl, 1) = 1 And .Cells(F, 4) = UserUnit Then
                ListBox1.AddItem .Cells(F, 1)
                ListBox1.List(W, 1) = MDF(.Cells(F, 2))
                ListBox1.List(W, 2) = .Cells(F, 7)
                ListBox1.List(W, 3) = .Cells(F, 5)
                ListBox1.List(W, 4) = .Cells(F, 6)
                ListBox1.List(W, 5) = .Cells(F, 9)
            W = W + 1
            End If
            F = F + 1
        Loop
    End With
    
    End Sub
    Sub BySite()
    
    With DACNRange
        W = 0
        F = 1
        Do Until F = .Rows.Count + 1
            If InStr(1, .Cells(F, 7), Frame1.ActiveControl, 1) = 1 And .Cells(F, 4) = UserUnit Then
                ListBox1.AddItem .Cells(F, 1)
                ListBox1.List(W, 1) = MDF(.Cells(F, 2))
                ListBox1.List(W, 2) = .Cells(F, 7)
                ListBox1.List(W, 3) = .Cells(F, 5)
                ListBox1.List(W, 4) = .Cells(F, 6)
                ListBox1.List(W, 5) = .Cells(F, 9)
            W = W + 1
            End If
            F = F + 1
        Loop
    End With
    
    End Sub
    Sub BySub()
    
    With DACNRange
        W = 0
        F = 1
        Do Until F = .Rows.Count + 1
            If InStr(1, .Cells(F, 9), Frame1.ActiveControl, 1) = 1 And .Cells(F, 4) = UserUnit Then
                ListBox1.AddItem .Cells(F, 1)
                ListBox1.List(W, 1) = MDF(.Cells(F, 2))
                ListBox1.List(W, 2) = .Cells(F, 7)
                ListBox1.List(W, 3) = .Cells(F, 5)
                ListBox1.List(W, 4) = .Cells(F, 6)
                ListBox1.List(W, 5) = .Cells(F, 9)
            W = W + 1
            End If
            F = F + 1
        Loop
    End With
    
    End Sub
    I hope that my question is clear for all,

    Thanks,
    Last edited by LoveCandle; 06-09-2009 at 05:56 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