Bonsoir
Fais un click droit sur l'onglet de ta feuille, visualiser le code et colle ce code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$4" Then
Application.EnableEvents = False
test = "Carte " & Range("B4")
Sheets(test).PrintPreview
Application.EnableEvents = True
End If
End Sub