I'm creating an online portal to display my tables to users. The online portal I'm using doesn't display linked records on the table so I've had to find a workaround by adding additional fields to display the text from the linked records. I want to be able to create/update linked records field and have it automatically create/update the single select field (which display properly in my portal and has color options). What is the best solution for this?
Here's my table setup:
USERS (LINK) = linked username records from Usernames table
Name (from USERS (LINK)): lookup field to display the username as text
USERS = single select field (this is how I want the usernames to be displayed)
What I want:
Whenever I update or create a record in USERS (LINK), I want it to automatically translate the updated or created record as a single select field without creating duplicates. Currently my single select field USERS is blank. I want it to automatically populate the names from USERS (LINK) and update accordingly if I ever update usernames or add entirely new usernames.
Thanks.