Application bug

Hi Dears,
We have a question in the designed form that is set as follows:


It works correctly in the web version. But in app version of the program, we encounter the following error:

We have tested both the following formats for the question type:
name= text and appearance=numbers
name= integer
could you pls help me?

Have you checked your XLSForm with this online validator ,please? This is always recommended during development and before deployment (for Kobo).

Can you try this:
if( number(${a2_1} <= 40, ‘1’, if(…
Hint: Select values are always stored as strings.

Better use you integer in the initial question, and you can do it as
if( ${a2_1} <= 40, ‘1’, if(…

1 Like