Hi all,
I have userform and it works fine.
It also can edit as well ( Finally)..
When I open userform and populate existing data :
-Textbox14 has a date value
-I have attached a Label13 ' Date?' and has red colour text.
Now I am trying that the date value in textbox14 is less than today() then Label13 is visible
Otherwise it is not visible.
Just cant get it work.
Please help
Kind regards

Private Sub TextBox14_change()
If TextBox14.Value < Today() Then
Me.Label13.Visible = True
Else
Me.Label13.Visible = False
End If
End If
End Sub
Bookmarks