1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
With LignTablo.Range
.Cells(1, 1) = CDbl(Replace(TextBoxNumPDL, ".", ",")) 'Numéro de PDL
.Cells(1, 2) = TextBoxNomclient 'Nom du Client
.Cells(1, 7) = TextBoxtel 'Numéro de téléphone du client
.Cells(1, 8) = TextBoxNomcontact 'Nom interlocuteur
.Cells(1, 9) = TextBoxFonction 'Fonction interlocuteur
.Cells(1, 10) = TextBoxEmail 'Adresse Email du client
.Cells(1, 11) = Satisfaction 'Satisfaction Globale du client
if me.Checkexpertise then
.Cells(1, 12) = "Manque d'expertise de l'intervenant"
end if
' pas besoin de condition quand la checkbox n'est pas cochée, puisque dans ce cas on ne doit rien écrire
.Cells(1, 13) = Checkinnefficace
.Cells(1, 14) = Checkpassage
.Cells(1, 15) = Checktracabilite
.Cells(1, 16) = Checkprix
.Cells(1, 17) = TextBoxcommentaires 'Commentaires |
Partager