hi ss,
you can use Excel data validation
=NOT(ISBLANK($D$3))
or an event macro
Private Sub Worksheet_Change(ByVal Target As Range)
Set isect = Application.Intersect(Target, Range("C8:D13"))
If Not isect Is Nothing Then
If Range("D3") = "" Then MsgBox "fill cell (D3) before fill in the cells (C8:C13 and D8:D13) "
End If
End Sub
--
isabelle
Le 2012-02-02 16:20, ss a ?crit :
but if easily resolved it would make it tidier. Could conditional format be used ?
if D3 is blank then the other cells have white text to hide the input.