I’m designing an app and there are a lot of places where I want dropdown to be populated from a list of items. For example, list of sports or list of events. Basically, I’m looking for something that does the job of a set in data structure or a dropdown list in Sheets. The only way I can think of right now is to create different tables with single column and add the values. Then create another table with computed columns for all of the single column tables. This seems complicated, is there a simpler way?
Thank you, @Eric_Penn. Yes, I can do that. With this, I’m trying to add a choice component where the source is this Resource table and I want to write to a column in a different table. However, the dropdown values are not getting populated. Any idea why? Attaching screenshot
Okay, I got it. I was trying to create a dropdown list from an array but it needs to be regular columns with text values. Working fine now, thanks again!
Right, the ‘Values’ dropdown was disabled because I had used array type for the Resource columns. I changed it to regular text and added values as separate entries. It worked after that. Thanks again, @Eric_Penn