VBA Help needed Fast
(How do you get the user to select cell A1?) IF he/she does not select A1, there should be a msgbox appearing to tell them to select A1. What is the vba code for this?
ExcelExperts.comExcel Consultancy, VBA Consultancy, Training and Tips Call:+442081234832 |
|
Excel / VBA ConsultancyFree Training VideosFree SpreadsheetsExcel / VBA JobsNavigationWho's onlineThere are currently 0 users and 421 guests online.
New Excel Experts
Current Excel / VBA Jobs |
VBA Help needed Fast(How do you get the user to select cell A1?) IF he/she does not select A1, there should be a msgbox appearing to tell them to select A1. What is the vba code for this? |
Highest Ranked Users
Recent Blogs
ForumsRecent comments
User login |
Workbook_SheetSelectionChange
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
If Target.Address <> "$A$1" Then
MsgBox "Please select cell A1"
End If
End Sub