Hi Andrew Wolf
You can use a foreign key relationship to create a list box in a field (Table A) referencing items from another field (Field B) in another table.
add these
Table A: Add a field (ForeignKeyReference) for the foreign key.
Table B: Has a field (ForeignKeyField) containing reference items.
Create Foreign Key Relationship, Link Table A.ForeignKeyReference to Table B.ForeignKeyField.
for UI Dropdown In your UI, use a dropdown or combo box for ForeignKeyReference.
now populate the dropdown dynamically from distinct values in Table B.ForeignKeyField.
SELECT DISTINCT ForeignKeyField
FROM TableB;
If this helps kindly accept the answer thanks much.