I tried deploying a form and this is the feedback i get “ODK Validate Errors: >> XForm is invalid. See above for the errors. : Invalid calculate for the bind attached to “${group_ym8wq69_count}” : Couldn’t understand the expression starting at this point: ͎$(number_of_oth… in expression $(number_of_other_household_members) The following files failed validation: ${tmpp3k3rvwq} Result: Invalid”
it would appear in your XLSForm that you have mistakenly written somewhere in a calculation
$(number_of_other_household_members)
(ie parenthesis) instead of
${number_of_other_household_members}
(ie curly brackets). So the form is now trying to interpret the raw string in your calculation as precisely that - “... $(number_of_other_household_members) ...
” - which doesn’t make sense.
1 Like
@ Xiphware. It worked perfectly.
Thank you very much
1 Like