Hi Trucker,
Right click the worksheet Tab,Choose View Code and Paste the Following Code:
Code:Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Target.Address > [c4].Address Then If IsEmpty([c4]) Then MsgBox "Cell C4 Must Have A Value." _ , vbCritical, "There Is A Problem!" [c4].Select End If End If End Sub
Hope this helps.