For example, suppose the app has two tables: a Products table and an Outbound table. Both tables have columns for “Product Name” and “Category.” The Products table is the master table, and the Outbound table manages transactions—that is, the columns in the Outbound table reference the Products table.
I want to set up the Outbound table’s form so that when a user selects a Category, only the Product Names belonging to that category are displayed. However, I can’t think of the correct expression to achieve this.
Both the display and the app’s functionality work correctly, but a yellow warning triangle appears.
Currently, for the Category column’s Valid If I have:
UNIQUE(SELECT(Product[Category], TRUE))
and for the Product Name column’s Valid If I have:
SELECT( Product[ProductID], [Category] = [_THISROW].[Category] )
I believe that if I can correctly write the expression for UNIQUE(SELECT(Product[Category], TRUE)), the issue will be resolved, but I can’t seem to get it right. Again, aside from the warning triangle, everything is working as expected.