Hello,
I am trying to make a repeated question conditionally required based off a prior response and I am stuck. Right now, I have the format set up that the number of sample replicates answered is how many times the field "Replicate Names" appears (repeat_count column = ${sampinfo_reps}). I need to keep this repeated format to ensure I can record all replicate names. However, I only want the questions {sampinfo_repnames} to be required if the response to the prior question ( {sampinfo_reps} ) is >1. Attached is my XLS form as it stands.
Solved! Go to Solution.
Do you mean relevant or required? For required you have to create an output that equals to "yes" when a condition is met, like if(${sampinfo_reps} >1,'yes',''), for relevant it is only ${sampinfo_reps} >1.
Do you mean relevant or required? For required you have to create an output that equals to "yes" when a condition is met, like if(${sampinfo_reps} >1,'yes',''), for relevant it is only ${sampinfo_reps} >1.
I suppose both. You solution worked for my needs, thank you!