A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You can do it with some code. Right-click the worksheet tab containing the required cell and paste in the following code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Static LastCell As Range
If Target.Cells.Count > 1 Then
Exit Sub
End If
If LastCell Is Nothing Then
Set LastCell = Target
End If
If LastCell.Address(False, False) = "A1" Then '<<< CHANGE
If LastCell.Value = vbNullString Then
Application.EnableEvents = False
LastCell.Select
MsgBox "enter a value in A1"
Application.EnableEvents = True
End If
Set LastCell = Range("A1") '<<< CHANGE
Else
Set LastCell = Target
End If
End Sub
Change each reference to A1 marked in the code with <<< to the cell you need validated. Once you enter that cell, the code requires that you input something. If it is empty, it remains selected.