Hello everyone,
I have an AppSheet DB for RFQs and Offers Comparison.
DB has 5 tables, with many dependencies (Ref Type column).
Please help with this issue
Solved! Go to Solution.
Imagine that in your app you are looking for records from a table.
If the reference is to a table 1 but the formula returns a column that is not the id of that table then the warning triangle appears.
For example, look at the following table:
If in the formula you call a field of the table with SELECT() but it is not an id of the table, (for example in this case let's suppose that you call the label) with SELECT( Table[label], true, true) then a yellow triangle will appear because although it finds records, no label matches the row id. To solve the problem, SELECT( Table[id], true)
Now, if you want to restrict the selection to unique records, you'd better create a slice that brings the unique records. How do you do that?
Well, you create a slice by tapping the + button next to the table in the editor. As the slice formula you write the following:
[id] = MINROW("Table","_RowNumber", condition)
Then in the valid if you could point, instead of the table, to the slice and this will bring the filtered records to be selected.
User | Count |
---|---|
18 | |
11 | |
7 | |
5 | |
5 |