[access] field visible on condition
Hello, I am new to this forum and I am seeking help from Access specialists. I am creating a furniture management database (tables, forms) and so far, no problem. In a form, I have two fields: a "Category" field and a "Seat Height" field. I want the "Seat Height" field to appear when the "Category" field contains the value "Seat". I wrote the following code in the After Update property of the "Category" field:
If [Category] = "Seat" Then
[Seat Height].Visible = True
Else
[Seat Height].Visible = False
End If
This does not work because it applies to all records in the table and does not remain in memory on the specific record.
How can I do this? Thank you for your valuable help
If [Category] = "Seat" Then
[Seat Height].Visible = True
Else
[Seat Height].Visible = False
End If
This does not work because it applies to all records in the table and does not remain in memory on the specific record.
How can I do this? Thank you for your valuable help
Configuration: Windows XP Access 2003