Ниже приведено решение VBA, которое должно работать и быть относительно быстрым.
Я добавляю все элементы в диапазоне, которые соответствуют году и месяцу, в ArrayList
. Затем я сортирую этот список по возрастанию и выбираю последний элемент в списке (этот элемент должен иметь наибольшее значение в наборе).
Это выполняется менее чем за секунду, просматривая списококоло 800 наименований.
Функция:
Option Explicit
Public Function MaxDateInRange(SearchRange As Range, _
YearNumber As Long, _
MonthNumber As Long) As String
Dim cell As Range
Dim ListIndex As Long
Dim List As Object: Set List = CreateObject("System.Collections.ArrayList")
'Go thorugh all cells, and all items that match the month and year to a list
For Each cell In SearchRange
If IsDate(cell) Then
If Month(cell) = MonthNumber And Year(cell) = YearNumber Then List.Add (cell)
End If
Next
'Sort the list ascending, then select the last item in that list
List.Sort
ListIndex = List.Count - 1
'Bounds check, to see if anything was found, otherwise return ""
If ListIndex >= 0 Then
MaxDateInRange = List(ListIndex)
Else
MaxDateInRange = vbNullString
End If
End Function
Использование:
Public Sub Example()
Dim rng As Range: Set rng = Sheets(2).Range("D1:D795")
Dim t As Double
t = Timer
Debug.Print MaxDateInRange(rng, 2019, 3)
Debug.Print MaxDateInRange(rng, 2019, 4)
Debug.Print "Process took " & Timer - t
End Sub
Отладочный выводпо данным выборки:
2019-03-28
2019-04-25
Process took 0.04296875