I have an Equipment table with related child records in the Assignments table (one record in the Assignments table for each time a piece of equipment is deployed). I want to show related child Assignment records when viewing an equipment record, but it should only show the assignment records that are active.
I’ve tried this command in the Related Assignments virtual field created by Appsheet in the Equipment table.
SELECT(Active Assignments[Assignments ID], ( [Equipment]= [_THISROW].[Equipment]))
The “Active Assignments” is a slice of the Assignments table, but it doesn’t honor the criteria I’ve put in the slice (active records only). It still displays all records in the Assignments table. Any thoughts on how to filter the results?
Thanks, Wick