B
Bill
I have a form which contains a sub form. In the sub form (CallDisplay) I
have it displayed in datasheet view and have a column with a check box. What
I need is if the check box is true (checked) then that entire line is not
displayed any longer. So I'm thinking something like:
Private Sub Closed_AfterUpdate()
If Me.Closed = True Then
Me.ID.Visible = False
Me.time.Visible = False
Me.incident.Visible = False
Else
Me.ID.Visible = True
Me.time.Visible = True
Me.incident.Visible = True
End If
End Sub
Problem is nothing happens. I think I need to use a filter with an update
expression.
Help please.... Thx
have it displayed in datasheet view and have a column with a check box. What
I need is if the check box is true (checked) then that entire line is not
displayed any longer. So I'm thinking something like:
Private Sub Closed_AfterUpdate()
If Me.Closed = True Then
Me.ID.Visible = False
Me.time.Visible = False
Me.incident.Visible = False
Else
Me.ID.Visible = True
Me.time.Visible = True
Me.incident.Visible = True
End If
End Sub
Problem is nothing happens. I think I need to use a filter with an update
expression.
Help please.... Thx