'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
Bookmarks