Epicollect5 User Guide
  • What is Epicollect5
  • About
    • Projects and Entries Syncing
    • Our Community
    • Privacy Policy
    • Cookie Policy
    • News & Papers
    • Epicollect5 Citation
  • Web Application
    • Intro
    • Create a Project
    • Project Info & Privacy
    • Delete Projects (Web)
    • View Projects
    • Search Projects
    • Viewing Entries
    • Print Entries
    • Add & Edit Entries
    • Manage Entries
      • Entries Limits
      • Entries Bulk Deletion
      • Entries Bulk Uploads
      • Entries Ownership & Metadata
    • Manage Users
    • Transfer Ownership
    • Manage Entries
    • Data Mapping
    • Downloading Data
    • Downloading Media
    • Metadata
    • Clone Project
    • Rename Projects
    • Import & Export Projects
    • Web Link to Add Entries
  • Formbuilder
    • Intro
    • Languages and Translations
    • Question Types
    • Add Questions
    • Edit Questions
    • Linking Forms
    • Rename Forms
    • Print Forms
    • Remove Forms
    • Search
    • Jumps (If-Else)
    • Branches
    • Groups
    • Title
    • Uniqueness
    • Double-entry Verification
    • Import & Export Forms
    • Import & Export Possible Answers
    • Edit Possible Answers
  • Mobile Application
    • Intro
    • Platforms and Media
    • Mobile App Authentication
    • Mobile App Permissions
    • Add Projects
    • Add Entries (Single Form)
    • Add Entries (Multiple Forms)
    • Edit Entries
    • Re-use answers
    • Save & Resume Entries
    • Upload Entries
      • Upload Errors
      • Incomplete Entries
      • Missing required aswers
      • Unsync entries
    • Entries Limits
    • Download Entries
    • Delete Entries
    • Delete Projects (App)
    • Location Questions
    • Add Bookmarks
    • Project Info
    • Share Media Files
    • Adjust Font Size
    • Filter Entries
    • Beta updates (Android)
    • Xiaomi Troubleshooting
  • Developers
    • Intro
    • API
    • Apps
  • Integrations
    • Google Maps
    • Google Earth
    • Microreact
    • Survey Toolkit
    • Google Sheets
  • Common Use Cases
    • Matrix Style Questions
    • Consolidate data
    • Jumps 101
    • Other, Please Specify
    • Non-Hierarchical Forms
    • Users Working Groups
    • Excel and UTF-8
    • Excel All Data in One Cell
    • Barcodes
    • Child Forms vs Branches
    • Dependent Dropdowns
    • Referencing Parent Form Responses
  • Extra
    • Useful Links
    • Demo Projects
    • FAQ
    • How-to Videos
    • Known Issues
Powered by GitBook
On this page
  • Amending possible answers' text
  • Deleting possible answers
  • Restoring Deleted Possible Answers
  • Sorting possible answers
  • Adding possible answers
  1. Formbuilder

Edit Possible Answers

The following applies to RADIO, CHECKBOX, DROPDOWN, and SEARCH question types only.

Amending possible answers' text

You can amend the possible answers text at any time by typing on the input field and saving the project.

Changing the possible answers text will propagate the change to your existing entries if any.

For example, if you have a question with YES and NO as possible answers, you collected some data and later you decided to change NO to NOPE, all your previous NO responses will become NOPE.

Deleting possible answers

If you delete a possible answer and you have some entries already collected, you will lose only the responses matching the possible answer you are deleting.

For example, if you have a question with YES and NO as possible answers, you collected some data and later you decided to delete the NO possible answer, all your previous NO responses will be empty but you still have all your YES responses.

Restoring Deleted Possible Answers

It is not possible to restore responses tied to a deleted possible answer. When you delete a possible answer in Epicollect5, all responses linked to that answer are permanently lost. Adding a new possible answer with the same text will not recover the lost responses.

Why Does This Happen?

Behind the scenes, each possible answer is associated with a unique identifier (answer_ref). For example, your original list might look like this:

[
    {
        "answer": "yes",
        "answer_ref": "58d92c2b50435"
    },
    {
        "answer": "no",
        "answer_ref": "58d92c2b50436"
    },
    {
        "answer": "n/a",
        "answer_ref": "58d92c2b50437"
    }
]

When you remove the "yes" possible answer, and re-add it again, the list will look like this:

[
    {
        "answer": "yes",
        "answer_ref": "58d92c2b50439"
    },
    {
        "answer": "no",
        "answer_ref": "58d92c2b50436"
    },
    {
        "answer": "n/a",
        "answer_ref": "58d92c2b50437"
    }
]

Even though the possible answers may look the same to the user, the unique identifiers (answer_ref) are different. This means there is no longer any reference linking the previous “yes” response to the new “yes” response. The system considers those to be two completely different responses when looking at the anwers_ref identifiers (58d92c2b50435 vs 58d92c2b50439). The answer_ref 58d92c2b50435 cannot be found anymore, so all those responses are gone.

This principle applies to any software in general. For example, if you delete a folder and then later create a new one with the same name on your PC, you wouldn’t expect to find the previous content in the new folder, despite the folder having the same name.

Sorting possible answers

You can re-order the possible answers by drag and drop using the handle next to each one of them.

You can sort in bulk by using the presets provided: ascending, descending, shuffle. Epicollect5 will sort the possible answers alphabetically with numeric collation (such as "1" < "2" < "10").

Adding possible answers

Adding possible answers to a project does not affect your existing entries. For example, on a question like "What if your favorite color?" of type RADIO, you could have "Red", "Green", "Blue" as possible answers.

After collecting some entries, you decide to add "Yellow" to the list of possible answers. Your existing "Red", "Green" or "Blue" responses will not be affected, as expected.

If the questions you modify are set as TITLE, the TITLE for your existing entries will not be affected.

PreviousImport & Export Possible AnswersNextIntro

Last updated 5 months ago