kalpesh said:
f worksheet 1 in " A1 " cell enter any value than cursor move other
cell otherwise massage box shown " enter any value "
Can you clarify this? It looks like you're asking for verification that A1
hasn't been left blank, is that right? If so, put this in the sheet's object
in the VBA editor:
Private currentCell As Range
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not (currentCell Is Nothing) Then
If currentCell.Address = "$A$1" Then
If Len(currentCell.Value) < 1 Then
MsgBox "A1 cannot be blank."
Set currentCell = Nothing
Cells(1, 1).Select
Else
Set currentCell = Target
End If
Else
Set currentCell = Target
End If
Else
Set currentCell = Target
End If
End Sub
I leave it to you to figure out how to get currentCell set to the proper
value the first time the sheet is displayed.
give me vba macro for this problem
how it possible
Let's see if he replies this time.