I have an enum ref column used to pull in ‘Zone Id’ into a dropdown on a form. In the valid_if I have the following:
Zones[Zone ID]
On the form I first select a contact from the contact table dropdown (comes from the contact table/contact ID), then the next dropbox gives me the zones associated with that contact (from the Zones table/zone ID).
That all works well. However, I want to filter the Zones in the dropdown by only pulling in the Zones which have the term ‘Managed’ in the Zones table ‘Zone Status’ column.
When I have used a filter to do this, which does work, the associations between contact and zone are ignored and I instead see a long list of zones, of which some are and some aren’t associated with the contact in the first contact dropdown.
I assume the Filter needs to be more specific somehow, but It’s currently only one line to pull in the ‘managed’ zones.