I developed my XLSForm using KoboGPT, unfortunately it could not load on Kobotoolbox and is constantly giving a error message. Here is the error message: Error loading survey: {“message”:“unclosed groupable set”,“counts”:{“open”:{“group”:1},“close”:{}}}.
What can I do to correct this error
Hi @aviel and welcome to the community!
Can you validate your form in here to see any syntax issues?
@hakan_cetinkaya thank you for this response. I found these errors: Error: [row : 6] Unmatched ‘begin_group’. No matching ‘end_group’ was found for the name ‘consented’.
[row : 5] Use the max-pixels parameter to speed up submission sending and save storage space. Learn more: XLSForm.org
[row : 6] Group has no label: {‘name’: ‘consented’, ‘type’: ‘begin_group’}
How do I correct them?
Hi @aviel,
1- Seems like you have beginned a group with begin_group but didn’t end it with end_group ![]()
Can you check the group of questions that you started in row 6 and put an end_group when your group of questions end?
2- Seems like you didn’t put a label in your group. Can you put a label on it too?
Like this one:
| type | name | label |
|---|---|---|
| begin_group | personal_info | Section A: Personal Information |
| text | name | What is your name? |
| integer | age | How old are you? |
| select_one yn | married | Are you married? |
| end_group | ||
in this help article:
@hakan_cetinkaya, it worked! Thank you.
