Une proposition de macro (pas d'affichage du bouton si rien dans la cellule correspondante, sinon affichage du bouton) :
VB:
Private Sub Worksheet_Change(ByVal Target As Range)
'
If Intersect(Target, Range("A2:D2")) Is Nothing Then Exit Sub
For i = 1 To 4
ActiveSheet.Shapes.Range(Array("Button " & i)).Visible = (Cells(2, i) <> "")
Next i
End Sub
Une proposition de macro (pas d'affichage du bouton si rien dans la cellule correspondante, sinon affichage du bouton) :
VB:
Private Sub Worksheet_Change(ByVal Target As Range)
'
If Intersect(Target, Range("A2:D2")) Is Nothing Then Exit Sub
For i = 1 To 4
ActiveSheet.Shapes.Range(Array("Button " & i)).Visible = (Cells(2, i) <> "")
Next i
End Sub