I am trying to create a list of names from Table1 Column ‘Name’ where row ‘Status’ is ‘Approved’ to create a dropdown list in Table2 Column ‘Approved Names’ to allow a user to select one of the approved names.
I then changed the row to a Enum Type with a Base Type of Ref to Table1 and inserted an expression in ‘Valid If’ SELECT(Table1[Name], [Status] = “Approved”) and I get a yellow sign with an exclamation mark in it in the dropdown.
Is this the best way to achieve my goal
If yes to (1) then how to I get rid of the yellow triangle
Now one more question. Each time one of the approved names is used in a submission for payment and the submission is approved how can I reduce the Approved Names list by the submitted and approved names?
I do not want double submissions on the same name.