bonjour à tous

Je n'arrive pas a fermer correctement excel malgré avoir lu beaucoup de sujets relatif ds la faq et sur le forum : excel.exe est toujour ds les processus et access ne re-execute pas ma boucle (erreur)

voici mon code simplifié (que la partie qui interagie avec excel) :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Dim appexcel As Excel.Application
Dim wbexcel As Excel.Workbook

'boucle1
Set appexcel = CreateObject("Excel.Application")
appexcel.Visible = True

Set wbexcel = appexcel.Workbooks.Open(CheminCopieASPXLS)
'boucle2
Sheets("ASP").Cells(1 + j, 1) = rsASP("DateActe")
Sheets("ASP").Cells(1 + j, 2) = rsASP("CodeActe")
Sheets("ASP").Cells(1 + j, 3) = 0
Sheets("ASP").Cells(1 + j, 3) = rsASP("TauxPriseEnCharge") / 100
Sheets("ASP").Cells(1 + j, 4) = CCur(rsASP("TarifActe"))
Sheets("ASP").Cells(1 + j, 5) = CCur(rsASP("MontantDepasHono"))
Sheets("ASP").Cells(1 + j, 6) = Sheets("ASP").Cells(1 + j, 5) +
         Sheets"ASP").Cells(1 + j, 4) - (Sheets("ASP").Cells(1 + j, 3) *
         Sheets("ASP").Cells(1 + j, 4))

appexcel.CutCopyMode = False
'fin boucle2
wbexcel.Save
wbexcel.Close
appexcel.Quit

Set appexcel = Nothing
Set wbexcel = Nothing
'fin boucle1
Si quelqu'un a une idée merci d'avance