Hi
I have the following macro and it says "sub or function not defined"??
Any Ideas?
'
I have the following macro and it says "sub or function not defined"??
Any Ideas?
'
VBA Code:
Sub J99653
Dim Arr(), Dict As Object, Col As String, Str As String, Valu As Long, i As Long
Set Dict = CreateObject("Scripting.Dictionary")
Arr = Cells(1).CurrentRegion.Value
For i = 1 To Cells(Rows.Count, 1).End(xlUp).Row
Valu = Range("E2")
EvaluateNumbers Arr, Dict, Str, Valu, 1
If Str <> "" Then
Range(Str).Interior.Color = vbGreen
End If
Str = ""
Next i
End Sub