Adding the 'other' option to a preloaded list

Hi,
I need to include an additional choice in a field that imports data from an external file. This is necessary because the external CSV file is immutable. For instance, I'm using select_one_from_file to import a list of country names from a CSV file, but I want to add the option 'other' to the list without altering the external CSV file. Thank you.

Hi @A_tbs
When you get a chance, please introduce yourself here. I'd also encourage you to add a real picture as your avatar because it helps build community!

or_other doesn't work with external selects. This is only a shortcut so if you use it in a form with select_one/select_multiple question under the hood that other option is added to the list of choices while converting the form from XLS to XML. If that list is in an external csv file we can't alter it automatically.