Dim r As Range
Set r = Sheets("TB").Range("B5:B11")
Set r = r.Find("", r(r.Count), xlValues)
If Not r Is Nothing Then
MsgBox " Veuillez renseigner tout le tableau de bord...", 64
r.Parent.Visible = xlSheetVisible 'si la feuille est masquée
Application.Goto r
Exit Sub
End If