Jul 07, 2022 02:21 PM
Hi, all!
Is there any way to open a specific record in a table by clicking on the value in a single select field? Or is there a way to create a button with the functionality “if {single select field} says “value” open {specific record in another table}?”
Solved! Go to Solution.
Jul 07, 2022 05:45 PM
Since the direct URL for any record is predictable, you could I guess create a Button field that will open a specific record when you click it? The formula might be:
SWITCH(
{Single Select Field},
"Option 1", "https://airtable.com/baseID/tableID/viewID/recordID1",
"Option 2", "https://airtable.com/baseID/tableID/viewID/recordID2",
"Option 3", "https://airtable.com/baseID/tableID/viewID/recordID3"
)
Open up each of your intended records to get the base and other IDs from the address bar.
Clicking on the single select field itself will just highlight the cell, you can’t turn those into clickable links.
Jul 07, 2022 05:45 PM
Since the direct URL for any record is predictable, you could I guess create a Button field that will open a specific record when you click it? The formula might be:
SWITCH(
{Single Select Field},
"Option 1", "https://airtable.com/baseID/tableID/viewID/recordID1",
"Option 2", "https://airtable.com/baseID/tableID/viewID/recordID2",
"Option 3", "https://airtable.com/baseID/tableID/viewID/recordID3"
)
Open up each of your intended records to get the base and other IDs from the address bar.
Clicking on the single select field itself will just highlight the cell, you can’t turn those into clickable links.
Jul 17, 2022 03:55 PM
Thank you so much! This worked perfectly!