Sub CLOTURE()
Dim c, c2
With Application
c = .IfError(.Match(CLng(CDate(Feuil2.Range("B1"))), Feuil1.Columns(1), 0), 0)
c2 = .IfError(.Match(CStr((Feuil2.Range("B1"))), Feuil1.Columns(1), 0), 0)
End With
If c2 > 0 Then c = c2
If c > 0 Then
rep = MsgBox("Etes vous sûr de cloturer cette période", vbYesNo + vbQuestion)
If rep = vbYes Then
Call transfert
ElseIf IsError(c) Then
rep = MsgBox("Inventaire non réalisé" & Chr(10) & "Veuillez réaliser un inventaire pour le mois écoulé", vbInformation)
Exit Sub
End If
End If
End Sub