Senthil Murugan
New Member
- Joined
- Sep 25, 2024
- Messages
- 35
- Office Version
- 365
- Platform
- Windows
Good Morning Everybody
Can anybody help to correct the below code?
I need to get Title and Input Message in Cell via input box
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
On Error GoTo None
With Range("A15").Validation
InputTitle = InputBox("Title", "Enter your Title")
InputMessage = InputBox("File Name", "Enter Your File Name")
End With
Application.ScreenUpdating = True
None:
On Error GoTo 0
End Sub
Thanks
A.Senthil Murugan
Can anybody help to correct the below code?
I need to get Title and Input Message in Cell via input box
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
On Error GoTo None
With Range("A15").Validation
InputTitle = InputBox("Title", "Enter your Title")
InputMessage = InputBox("File Name", "Enter Your File Name")
End With
Application.ScreenUpdating = True
None:
On Error GoTo 0
End Sub
Thanks
A.Senthil Murugan