Hello,
Here's a way to do it.
Copy the code below, right click on the sheet tab where you this function.
Click View Code. Paste the code on the code sheet and close the code editor.
Deactivate the sheet, and then activate it again. All "empty" cells will now
say "Missing"
User can enter data as usual and if he delete data in target range the cell
will say "Missing"
I hope this is what you need.
Private Sub Worksheet_Activate()
Dim MyRange As Range
Set MyRange = Range("B6:M19")
For Each c In MyRange
If c.Value = "" Then c.Value = "Missing"
Next
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim MyRange As Range
Set MyRange = Range("B6:M19")
Set isect = Application.Intersect(MyRange, Target)
If Not isect Is Nothing Then
If Target.Value = "" Then Target = "Missing"
End If
End Sub
Best regards,
Per