I am using Access 2003.
I am looking for a way to hide any records in a database that a specific condition is not met.
Example:
Code:
If [Age] = "25" then
Record.visible = true
Else
Record.visible = false
I don't know how to go about doing this and I will be grateful for any help.