Optimizing Real World Data Collection: Improving the UX/UI of REDCap via Branching Logic

Author

Farees Saqlain, Sophia Z. Shalhout, David M. Miller

Published

April 26, 2020

Abstract
A tutorial on creating and deploying branching logic on the REDCap platform

Objectives for the Optimizing Real World Data Collection Tutorial Series

Overview

Overview of REDCap

Branching Logic: Tutorial Overview

Key Points

  • Intelligent branching of fields streamlines the data abstraction process and is one important method of real-time quality control of data entry. Furthermore, it optimizes the UX/UI interface by removing irrelevant/ not applicable questions from view. This reduces clicks for the user as they are only required to capture data elements relevant to that specific encounter based on previously collected data through conditional logic.
  • After this lesson, you will:
    • Understand common uses of branching logic in REDCap
    • Gain familiarity with the basic syntax of branching logic in REDCap
    • Understand the different options REDCap provides for creating branching logic
  • Skill Level: Beginner

Uses for Branching Logic in REDCap

REDCap allows for conditional logic, that is making the display of a particular field, or set of fields, contingent upon what was entered for fields elsewhere, either within the same form or within the same group of forms. This ability to “branch” fields helps maximize the user experience for the data entry person, and also powerfully contributes to quality control of data entry in real-time.

Common scenarios

A certain set of fields is germane only for a specific subgroup of subjects.

  • For example, you might be interested in collecting prior pregnancy details only if a subject had a history of being assigned to female sex at birth, or, even more specifically, if the subject confirms a history of prior pregnancy.

  • If you are interested specifically in details of medical immunosuppressants, you may condition capturing data on specific medications/agents and circumstances of administration only if the subject confirms having history of being on immunosuppressants.

A complex set of fields may be useful to display only in cases where the associated data is accessible to the data entry person.

  • For example, you might want to display a set of fields for capture of details on tumor histopathology only when the data entry person specifies that the tumor has been biopsied and associated reports are available.

A calculated field is calculable (and therefore useful for display) only if a set of fields have appropriate values entered in.

  • Display a calculated field with the BMI of a patient, only if there is data entered for the patient’s height and weight.

Syntax of REDCap Branching

There are many types of fields in REDCap which can provide the values upon which you may construct your branching logic. These include free-text number fields, multiple choice fields (whether radio-buttons or dropdowns), checkbox fields, as well as calculated fields. You may branch on values of fields that are visible on page to the data entry person, or on values of calculated fields that might be only visible to the database architect (through the use of the @HIDDEN action tag). Ultimately, the values captured by the fields above are all stored as numbers, allowing for deployment of conditional logic as described below.

  • The basic syntax of REDCap branching logic employs Logical and Boolean operators.

    Logical operators
    Equals =
    Does not equal <>
    Greater than >
    Less than <
    Boolean operators
    Must satisfy all of multiple conditions AND
    Must satisfy one of multiple conditions OR

Notes

  • Variable names must be contained within square brackets (ex. [field1]).

  • For multiple-choice radio-button or dropdown fields, each option is assigned a corresponding numerical output. For example, “Yes” may be assigned 1, and “No” may be assigned 0.

    • For example, consider branching a set of fields concerning number of pregnancies and associated outcomes on the field below.

    • The branching logic [pregnancy_hx] = 1, in this case, would display a field only if the answer to [pregnancy_hx] was “Yes.”

  • To branch on a checklist field (ex, [checklist]), you must use the following syntax: [checklist(1)] = 1 (describes case where the specific checkbox designated as #1 has been checked off) versus [checklist(1)] = '0' (describes case where checkbox #1 has not been checked).

  • Using the value 0 in conditional logic is a common source of error. The condition [examplefield] = 0 is satisfied if the data entered into this field numerically equates to zero, or if this field was left empty. Use single or double quotes ('0' or "0") to specify zero as the entered field value.

  • If you would like to display a field only if another reference field has data entered into it (regardless of the exact value), the branching logic would be [referencefield] <> '', or [referencefield] <> "" (empty quotes).

Methods of Input for REDCap Branching

There are 3 ways to construct branching logic in REDCap:

  • Two are accessed through the Online Designer by clicking the branching icon for the field.

  • This opens the Online Designer’s Branching Logic interface, with the 2 available methods.

  1. The Advanced Branching Logic Syntax box, in which you type in the desired conditional logic (combination of conditional and Boolean operators) by hand. This is the most flexible option and is useful for more complex branching.

  1. The Drag-N-Drop Logic Builder which generates a bank of field choices (combinations of fields with different available values) for whichever instrument (i.e. form) in the record that you specify. You may drag the desired choices from the bank on the left to the selection box on the right. You may drag more than one field choice into the selection box and specify the “ALL” or “ANY” options as your Boolean operators.

  2. The third option is to input the conditional logic directly into the Data Dictionary spreadsheet and then upload back into REDCap. This is particularly useful for generating repetitive structures, as you can copy and paste cells in bulk.

    • To do this, the steps are:
      1. Download the Data Dictionary.

      2. Edit the branching logic in the appropriate column (columns not relevant to the topic have been hidden below) and save the spreadsheet.

      3. Upload the spreadsheet back into REDCap.

Takeaways

  • Branching logic is a powerful feature in REDCap for streamlining and maintaining quality of data capture. Branching logic may be entered into the REDCap interface through the Online Designer or directly into the REDCap Data Dictionary spreadsheet.

Next in our series of tutorial posts on Optimizing Real World Data Collection: In-Instrument Quality Control of a Patient Registry in REDCap

This site represents our opinions only. See our full Disclaimer and Terms of Use Agreement