Looking for support for the Meeting Scheduler found on Youtube July 2018. https://www.youtube.com/watch?v=P0ro...dex=29&t=1960s (Yes I have contacted the creator and waiting to hear back)
When working in Oct-Dec, no meetings are loaded back into the Calendar from 10th of each month. I suspect it has something to do with the increase in digits as Oct/Nov/Dec 10th are the first dates of any month in the year to have 6 digits.
I narrowed down the VBA code issue to the LoadMonth Macro (Load Meetings Into Month) where FoundMonthDates = FindMonthDates.Find(MtgDate, , xlValues, xlWhole) suddenly become "Nothing" from the 10th Oct. As the loop begins, it will correctly identify the Filter Rows and Last Filter Rows, and correctly identifies the MtgDate it is looking for, however, it returns Nothing for the 10th onwards.
Note I made changes to some of the ranges to accommodate changes I made to the calendar to suit my puro=pose. All other months load every meeting listed without issues.
How can this be corrected to allow for the meetings to be loaded correctly?

'Load Meetings Into Month   DOES NOT WORK CORRECTLY IN OCT, NOV, DEC
    For FiltRow = 4 To LastFiltRow
    MtgDate = Sheet26.Range("BC" & FiltRow).value
    Set FoundMonthDates = FindMonthDates.Find(MtgDate, , xlValues, xlWhole)
        If Not FoundMonthDates Is Nothing Then ' Found Date
            ScCol = .Range("AB" & FoundMonthDates.Row).value
            ScRow = .Range("AC" & FoundMonthDates.Row).value
            If MtgCount = 5 Then MtgCount = 4
            .Cells(ScRow + MtgCount, ScCol).value = Sheet26.Range("BB" & FiltRow).value & ": " & Sheet26.Range("BE" & FiltRow).value
            .Cells(ScRow + MtgCount, ScCol + 50).value = Sheet26.Range("BA" & FiltRow).value
            If Sheet26.Range("BC" & FiltRow + 1).value = MtgDate Then MtgCount = MtgCount + 1 Else: MtgCount = 0
        End If
    Next FiltRow