Select Item - Select blank default - Error Item to select field is required

Hey there,

we updated our platform from version 2023.10 to 2024.10. Now I am trying to upgrade all dependencies in our processes and I’m facing the following issue:
There is a workflow that uses Select Item to choose the default option. This option contains 2 whitespaces and nothing else (" "). I get an error “Item to select” field is required.

When " " is selected the error still appears. In version 2023.10 there was no problem with it.

Do you have any advice for solving this?

Hi @JenJen

Can you share the screenshot of the error you are facing.

Regards

Try to use below methods and see

  1. String.Empty instead of “”
    or
  2. Assign that empty value to a variable and pass the variable into it.
1 Like

Hi @JenJen

Open the select Item activity and replace the value " " with Chr(160) or a non-breaking space character. Use the expression editor to set the value to Chr(160) if you are using VB. Save the workflow and publish the updated process.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.