j'étais peut etre pas claire.
mon tableau est le suivant
date défaut
24.10.05 fonctionnel
24.10.05 fonctionnel
24.10.05 fonctionnel
24.10.05 fonctionnel
24.10.05 assemblage
24.10.05 fonctionnel
24.10.05 fonctionnel
25.10.05 étanchéité
25.10.05 fonctionnel
25.10.05 fonctionnel
25.10.05 fonctionnel
25.10.05 fonctionnel
25.10.05 fonctionnel
26.10.05 fonctionnel
26.10.05 fonctionnel
26.10.05 fonctionnel
26.10.05 assemblage
26.10.05 fonctionnel
27.10.05 assemblage
sur un autre tableau je viens préciser la date de debut et la date de fin d'analyse.
date debut date fin défaut
24.10.05 26.10.05 assemblage 0
dimensionnel 0
esthétique 0
étanchéité 0
fonctionnel 0
le programme que j'ai mis est le suivant:
Do Until Sheets("Feuil1" ).Cells(i, 13).Date = Cells(3, 24).Date
'cells (i,13) correspond à la date sur mon 1 er tableau et la (3,24)celle de la fin d'analyse que je vais preciser ici..
Do While Cells(i, 13).Date = Cells(3, 23).Date
'la (3,24) correspont à la date de debut...
If Cells(i, 16).Text = "assemblage" Then
Cells(3, 26).Value = Cells(3, 26).Value + Cells(i, 14).Value
End If
If Cells(i, 16).Text = "dimentionnel" Then
Cells(4, 26).Value = Cells(4, 26).Value + Cells(i, 14).Value
End If
If Cells(i, 16).Text = "esthétique" Then
Cells(5, 26).Value = Cells(5, 26).Value + Cells(i, 14).Value
End If
If Cells(i, 16).Text = "étanchéité" Then
Cells(6, 26).Value = Cells(6, 26).Value + Cells(i, 14).Value
End If
If Cells(i, 16).Text = "fonctionnel" Then
Cells(7, 26).Value = Cells(7, 26).Value + Cells(i, 14).Value
End If
i = i + 1
Loop
i = i + 1
Loop
je pense que c'est mon ".date" qui marche pas je sais pas quoi mettre.
merci d'avance.