Sub Saisie()
Dim feuiLLe As String
Sheets("Saisie").Activate
If Not IsError(Evaluate("='" & Range("F12").Value & "'!A1")) Then
Range("A2:E2").Copy
feuiLLe = Range("F12").Value
Sheets(feuiLLe).Range("A" & Sheets(feuiLLe).Cells(Rows.Count, "A").End(xlUp).Row + 1).PasteSpecial Paste:=xlPasteValues
Range("B12:D12,B9:D9,B6:I6,F9:I9,F12").ClearContents
Range("b6").Activate
Else
MsgBox "Feuille ligne budgetaire non reconue", , "Information"
End If
End Sub