Excel VBA: Subroutine + Searching column in WS1 for matching data in WS2, then tallying results in WS2

HockeyGuy4433

New Member
Joined
Jun 20, 2018
Messages
6
Hi everyone,

I'm trying to create a list of specific aircraft from Air Canada that have NOT been in accidents. The aircraft organization name is in my worksheet titled "RawData" (Row K), the aircraft registration #s are in my worksheet titled "RawData" (Row C), the Air Canada registration #s are in my worksheet titled "Air Canada" (Row C), and I'm open to the way the results come out.

Simply put, I'm trying to determine which Air Canada aircraft have NOT been in an accident.

Here is the closest I've come:

Code:
Sub CountMatch()


' Variable declarations


Dim i, j, k As Integer
Dim LastRowA As Integer
Dim LastRowB As Integer
Dim LastRowC As Integer
Dim frequency As Integer


' Range & clear answer cells


LastRowA = Worksheets("RawData").Cells(Rows.count, "K").End(xlUp).Row
LastRowB = Worksheets("RawData").Cells(Rows.count, "C").End(xlUp).Row
LastRowC = Worksheets("AirCanada").Cells(Rows.count, "C").End(xlUp).Row


' Start of code


For i = 2 To LastRowA
        
            ' Search for Air Canada planes
            If Worksheets("RawData").Cells(i, "K") = "Air Canada" Then
                If Worksheets("RawData").Cells(i, "C") = Worksheets("AirCanada").Cells(i, "C")
                 
                
                
            Worksheets("RawData").Activate
            With ActiveSheet
            Worksheets("RawData").Range(.Cells(ColVal, 1), .Cells(ColVal, 20)).Select
            Selection.Copy
        End With
        
            End Select
    
Next


End Sub
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).

Forum statistics

Threads
1,215,471
Messages
6,125,000
Members
449,202
Latest member
Pertotal

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top