Hey,
I have the following tables:
- A Teams table, with 13 records that express a team number (1-13).
- A Candidates table, where each Candidate record has a connection field to a single Team from the Teams table (Candidate X → Team 1). Each Candidate record also has a number field named “Ranking”, with an integer value between 1-6.
In the Teams table I have a rollup field that counts the number of Candidate records that are connected to each Team record (i.e. Team 13 has 10 Candidates connected to it).
Now what I want to do is to either use an existing table, or create a new table, where I’ll have the following fields:
- Team number (connected to Teams table)
- Ranking (1-6)
- Number of Candidates connected to this Team number with this Ranking (i.e. if Team number is 13, and Ranking is 1 - the third field will count how many Candidate records are connected to Team 13, and also have a Ranking field of 1).
The main issue here is that any rollup / formula field can only aggregate based on that one connected field (in this example - the Team number), but it can’t join on both the Team number and the Ranking value.
Any ideas?