Bonjour,
Month est une fonction, pas une propriété d'un objet "Sheet" ou "Worksheet".
En clair, il faudrait remplacer :
thisDate = Sheets("cascade").Month(Cells(2, 4))
Par :
thisDate = Month(Sheets("cascade").Cells(2, 4))
Ou en 2 lignes :
thisDate = Sheets("cascade").Cells(2, 4)
thisMonth = Month(thisDate)
Edit : salut U.Milité !