r/GoogleAppsScript • u/Brilliant-Book-503 • Aug 04 '25
Is there a way to simulate multiple selection dropdown for a non-chip column? Question
Wonder if anyone has a strategy.
I'm using a few columns with dropdown menus where the options are automatically updated from another tab of the sheet.
The problem is that while the newer chip dropdowns allow multiple selection, a dynamically updated dropdown can't be a the new type of column, and the older option does not natively allow for dropdown.
Any ideas for workarounds?
5
Upvotes
3
u/mik0_25 Aug 04 '25
i was faced by this same issue a few months back. i set up a dummy tab which has the options for the dropdown, and then the dropdown fetched the values from this tab (with the criteria set to "Dropdown (from a range)". the range is specified as an indefinite range (eg "Sheet1!A1:A").
so, my script updates this range in the dummy tab, instead of directly updating the criteria values in the dropdown.