can we connect two “multi select” rows with each other? Example:
Column 1: A, B, C
Column 2: 1,2,3
We would like to associate A with 1, B with 2 and C with 3.
In a nutshell, what we’re trying to do is this: For each software developer in our database, we want to display the number of years they have in a specific technology. Say 5 years in PHP or 2 years in Airtable etc
You won’t be able to have a multi select field that changes, the field should be a Formula field. You can use this Switch({Coulmn1}, ‘A’, 1, ‘B’, 2, ‘C’, 3)