Pon el siguiente evento en la hoja, pero no mencionaste cómo lo quieres "resaltar", te puse un par de ejemplos, si pasas el mouse por el botón1 se cambia de color y cambia de tamaño.
Private Sub CommandButton1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
If ActiveSheet.CommandButton1.Height = 27 Then
ActiveSheet.CommandButton1.Height = 27 + 5
ActiveSheet.CommandButton1.BackColor = &H80FF80
Else
ActiveSheet.CommandButton1.Height = 27
ActiveSheet.CommandButton1.BackColor = &HE0E0E0
End If
End Sub