Sub Q2()
If MsgBox("Le client est il mineur ?", vbQuestion + vbYesNo, "Type de dossier") = vbYes Then
With Sheets("Analyse")
.Cells(.Cells(13, 1).End(xlDown).Row + 1, 1) = Worksheets("Questions").Range("C6").Value
.Cells(.Cells(13, 4).End(xlDown).Row + 1, 4) = Worksheets("Questions").Range("G7").Value
End With
Call Q3
Else
With Sheets("Analyse")
.Cells(.Cells(13, 1).End(xlDown).Row + 1, 1) = Worksheets("Questions").Range("D6").Value
.Cells(.Cells(13, 4).End(xlDown).Row + 1, 4) = Worksheets("Questions").Range("G5").Value
End With
Call Q5
End If
End Sub