Hi again
On my form I have a "last updated by" field which works fine, I have added a label to this field so it reads "this data was last updated by" then the "changed by" field
I want this to be where if the field is blank in the changed by the label is invisible I have used the code:
If Nz(Changed_By, "") = "" Then
Me.Label68.Visible = False
Else: Me.Label68.Visible = True
End If
The code works but I am not sure on which event to put it so that it will be invisible until someone updates that record.
On my form I have a "last updated by" field which works fine, I have added a label to this field so it reads "this data was last updated by" then the "changed by" field
I want this to be where if the field is blank in the changed by the label is invisible I have used the code:
If Nz(Changed_By, "") = "" Then
Me.Label68.Visible = False
Else: Me.Label68.Visible = True
End If
The code works but I am not sure on which event to put it so that it will be invisible until someone updates that record.