Hi all. First post here.

I use Excel every day at work and felt like learning VBA was a good step for me. I've written a program that I'd like you guys to critique as to its efficiency / any other points that I could learn from.
My number one problem is that it goes to slow. I've programmed in assembly with microcontrollers that operate at 4Mhz or so and I feel like with all this computing power the program takes WAY to long to run when it is dealing with large ranges.

What it's for:
I have to reconcile some large bank accounts every month, where millions of dollars move through in hundreds of different transactions. I needed something to match up values that appear in our ledger and values that appear on our bank statement, then identify values that don't match.
How the program goes about it:
It prompts me to select each range of values, then looks at each value in range A (copyRange), compares it to values in range B (findRange) and then colors values using the color in cell A1 for each time it is found in the opposite range, and vice versa.
It then uses the "ColorSum" UDF that I found on the internet to sum each cell in each range that has been highlighted, and then show the user that the values match with a message box. The user can select for the program to generate a report, which then selects a new sheet and creates an array of values from each range that has not been highlighted, and places them on the new sheet.

I know this code isn't efficient. If I have a small number of values, say, 400 in each range, it takes about 4 seconds to run. This isn't all that unreasonable, but as a matter of learning I'd like to find out how to make it faster. If I were to use this program on, say, 20,000 values in each range, it will take several minutes to run. Thanks!


'function to sum values within colorred cells
Function ColorSum(varRange As Range, varColor As Range) As Variant
Dim varTemp As Variant, cell As Range
ColorSum = 0
For Each cell In varRange
If cell.Interior.Color = varColor.Interior.Color Then
If IsNumeric(cell.Value) Then ColorSum = ColorSum + cell.Value
End If
Next
End Function


Sub Matchup()

Dim copyRange As Range
Dim findRange As Range
Dim copycountVal As Integer
Dim findcountVal As Integer
Dim currentVal As Double 'if not a double it won't return proper values on some formulas
Dim cellFor As Range
Dim cellFor2 As Range
Dim cellFor3 As Range
Dim cellFor4 As Range
Dim colorVal As Long
Dim loopVal As Variant
Dim forVal As Integer
Dim startTime As Double
Dim matchVal As Double
Dim responseVal As Integer
Dim findArray()
Dim copyArray()
Dim iI As Variant


Set copyRange = Application.InputBox(Prompt:="Select the copyRange.", Title:="Select Range", Type:=8)
Set findRange = Application.InputBox(Prompt:="Select the findRange.", Title:="Select Range", Type:=8)

startTime = Timer

'format the numbers all the same so there won't be any search issues
With copyRange
    .NumberFormat = "General"
End With
With findRange
    .NumberFormat = "General"
End With

colorVal = Range("A1").Interior.Color 'set to A1 right now, but may consider moving to prompted range value
copyRange.Activate
currentVal = ActiveCell.Value

For Each cellFor In copyRange
reenterFor:

copyRange.Activate

'***this code was added with the intent of making it faster

currentVal = ActiveCell.Offset(forVal, 0).Value
matchVal = WorksheetFunction.Match(currentVal, copyRange, False)

If matchVal <> forVal + 1 Then
GoTo endof1stLoop
End If
'****end of code added to make it run faster

currentVal = ActiveCell.Offset(forVal, 0).Value
copycountVal = WorksheetFunction.CountIf(copyRange, currentVal)
findcountVal = WorksheetFunction.CountIf(findRange, currentVal)

If findcountVal >= 1 Then
findRange.Activate
findRange.Find(What:=currentVal, After:=ActiveCell, LookIn:=xlFormulas, LookAt _
        :=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
        False, SearchFormat:=False).Activate
ActiveCell.Interior.Color = colorVal
End If

If findcountVal > 1 Then
For loopVal = 2 To copycountVal
findRange.FindNext(After:=ActiveCell).Activate
ActiveCell.Interior.Color = colorVal
Next
End If
endof1stLoop:
forVal = forVal + 1
Next cellFor

'now perform the same operation on the findrange
findRange.Activate
forVal = 0  'set the loopcounting value back to 0
loopVal = 0 'set the other loopcounting value back to 0

For Each cellFor2 In findRange
findRange.Activate
'***code added to make it run faster
currentVal = ActiveCell.Offset(forVal, 0).Value
matchVal = WorksheetFunction.Match(currentVal, findRange, False)

If matchVal <> forVal + 1 Then
GoTo endof2ndLoop
End If
'end of code added to make it run faster.


currentVal = ActiveCell.Offset(forVal, 0).Value
copycountVal = WorksheetFunction.CountIf(copyRange, currentVal)
findcountVal = WorksheetFunction.CountIf(findRange, currentVal)

If copycountVal >= 1 Then
copyRange.Activate
copyRange.Find(What:=currentVal, After:=ActiveCell, LookIn:=xlFormulas, LookAt:=xlWhole, SearchOrder:=xlByRows, _
SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False).Activate
ActiveCell.Interior.Color = colorVal
End If

If copycountVal > 1 Then
For loopVal = 2 To findcountVal
copyRange.FindNext(After:=ActiveCell).Activate
ActiveCell.Interior.Color = colorVal
Next
End If
endof2ndLoop:
forVal = forVal + 1
Next cellFor2

responseVal = MsgBox("Time to run:" & vbTab & Timer - startTime & vbCrLf _
& "Sum of highlighted values in copyRange:" & vbTab & ColorSum(copyRange, Range("A1")) & vbCrLf _
& "Sum of highlighted values in findRange:" & vbTab & ColorSum(findRange, Range("A1")) & vbCrLf _
& "Do you want a match report?", vbYesNo, "Matchup Complete")

Select Case responseVal
Case vbNo
GoTo endofMacro

Case vbYes
'bring any values in copyRange not matched within findRange into an array
forVal = 0
iI = 0
copyRange.Select
For Each cellFor3 In copyRange
If ActiveCell.Offset(forVal, 0).Interior.Color <> colorVal Then
ReDim Preserve copyArray(iI) As Variant
copyArray(iI) = ActiveCell.Offset(forVal, 0).Value
iI = iI + 1
End If
forVal = forVal + 1
Next cellFor3

'bring any values in findRange not matched within copyRange into an array
forVal = 0
iI = 0
findRange.Select
For Each cellFor4 In findRange
If ActiveCell.Offset(forVal, 0).Interior.Color <> colorVal Then
ReDim Preserve findArray(iI) As Variant
findArray(iI) = ActiveCell.Offset(forVal, 0).Value
iI = iI + 1
End If
forVal = forVal + 1
Next cellFor4

'place the two arrays into a sheet for the user to analyze
Sheets.Add After:=Sheets(Sheets.Count)
Range("A2:B2").Formula = "Sum of Values Not Matched:"
Range("A3").Value = WorksheetFunction.Sum(copyRange) - ColorSum(copyRange, Range("a1"))
Range("B3").Value = WorksheetFunction.Sum(findRange) - ColorSum(findRange, Range("a1"))
Range("A4").Formula = "copyRange Values Not Matched:"
Range("B4").Formula = "findRange Values Not Matched:"
Range("a5").Select
Range("A5:A" & ActiveCell.Row + UBound(copyArray)).Value = Application.Transpose(copyArray) 'this will put the array into the range
Range("b5").Select
Range("B5:B" & ActiveCell.Row + UBound(findArray)).Value = Application.Transpose(findArray)

'format the newly created report

With Range("A2:A" & ActiveCell.Row + UBound(copyArray))
    .HorizontalAlignment = xlCenter
    End With
With Range("B2:B" & ActiveCell.Row + UBound(findArray))
    .HorizontalAlignment = xlCenter
    End With
Columns("A:B").EntireColumn.AutoFit
Range("A2:B4").Font.Bold = True
    
End Select

endofMacro:
MsgBox "All Done!"
End Sub