J'ai une macro maitre qui pose 3 questions et qui active 2 autres macros reprenant les paramatres de la macro maitre.
A l'execution, j'ai une erreur d'execution 450 ( nombre d'argument incorrect ou affectation de propriete incorrecte).
Je suis en Excel 2003
Si qq pouvait m'aider, je le remercie d'avance
Sub Evolution
dd = Format(Now, "dd")
mm = Format(Now, "mm")
yyyy = Format(Now, "yyyy")
Title = " Evolution "
Msg = " Jour à traiter : "
vdd = InputBox(Msg, Title, dd)
Msg = " Mois à traiter : "
vmm = InputBox(Msg, Title, mm)
Msg = " Année à traiter : "
vyy = InputBox(Msg, Title, yyyy)
Application.Run "SC_Evolution1", vdd, vmm, vyy
Application.Run "SC_Evolution2", vdd, vmm, vyy
End Sub