Prevent duplicate dates

Sounds like you just need to store a person ID in the Scores table, alongside the Sweep ID.

Then in the Sweeps table, make a multi relation to return all people in a Sweep, and have a joined list column to return a comma-delimited string of person IDs.

In your choice component, point to the list of all people, filter by rowID is not included in screen > comma-delimited string above.

1 Like

I don’t have specific ROW ID columns. I assume this method won’t work unless these are created?

It’s always best to use RowIDs for this sort of thing, as they are guaranteed to be unique.

1 Like

The fields I was referencing have unique data but they’re not appearing when I try to add a filter to the choice component.

That’s why I asked. I thought perhaps a row ID had different characteristics that allowed it to be seen across multiple components.

It took a while but your suggestion worked. Thank you.

It’s okay. I figured it out.

Looking at the table below, I am trying to create a column that will tell me which scores have been used on which date. I created a relation field where date is mapped to Scores-Placing but that’s not giving me anything. How can I create a column that will show me every placing used on the same date?

Is the table above supposed to store “scores” as well? I’m not sure what you mean by “created a relation field where date is mapped to Scores-Placing but that’s not giving me anything” (aren’t those different types of data?)