Are multiple default values in a multiple select possible?

example:
a choices list with cities:

  • Paris
  • London
  • Brussels
  • Berlin
    If using select_multiple, one can make one of the cities default value by putting its name in the "default" column in a xls-form. I.e. London.

My question: is it possible to have more than one city already chosen as default? So i.e. London and Brussels. How do I have to code this in the xls-form?

Thank you in advance,
Bart roelandt

Put the names there in a space separated list (e.g., "Paris London Berlin").

1 Like

Oh! Is it that simple! :upside_down_face:
Thank you!