I am trying to write a calculate command that combines the value of one
variable, say x1, with the minimum value of four other variables--x2, x3,
x4, x5.
All of these variables can take on one of five values.
Depending on the specific value of x1 and the specific value of the minimum
of the other four, a number should be produced. I need to specify that
number for each possible combination of x1 and the min of x2-x4.
I'm currently working with something that looks like this:
min can only take a single parameter, so you'll have to combine x2-x5
into a temp variable first. $temp's calculate would be something like
concat(${x2}, " ", ${x3}, " ", ${x4}, " ", ${x5}). Then you can and
the two values.
I wouldn't combine these into one command. Use a series of temp values
to build up the final answer. Using this step-by-step approach makes
your form easier to test and ensure it will run quickly on all
devices.
Yaw
ยทยทยท
--
Need ODK consultants? Nafundi provides form design, server setup,
in-field training, and software development for ODK. Go to
https://nafundi.com to get started.
I am trying to write a calculate command that combines the value of one
variable, say x1, with the minimum value of four other variables--x2, x3,
x4, x5.
All of these variables can take on one of five values.
Depending on the specific value of x1 and the specific value of the minimum
of the other four, a number should be produced. I need to specify that
number for each possible combination of x1 and the min of x2-x4.
I'm currently working with something that looks like this: