krunal123
Board Regular
- Joined
- Jun 26, 2020
- Messages
- 177
- Office Version
- 365
- 2019
- 2016
- Platform
- Windows
When I Click cell C8, I should see the command button shown in E8 not otherwise via vba coding.
i was follow this code but not working pleased help me :
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Me.Range("C8")) Is Nothing Then
Me.Shapes("CommandButton1").Visible = True
Else
Me.Shapes("CommandButton1").Visible = False
End If
End Sub