Skip to content

Survey123 Connect desktop app

Use Survey123 Connect to create advanced surveys with XLSForm on your desktop.

What is Survey123 Connect?

ArcGIS Survey123 Connect is a desktop application for creating, publishing, and managing advanced surveys using the XLSForm standard. It provides powerful capabilities for building complex forms with sophisticated logic, calculations, and validation, making it ideal for advanced data collection needs.

Connect gives you full control over survey structure and logic through Microsoft Excel spreadsheets, enabling you to create highly customized surveys with advanced features.

You use the Survey123 Connect to:

  • Create surveys using XLSForm with Microsoft Excel
  • Analyze, convert, translate, and update surveys with Python-powered tools
  • Automate workflows and integrate with ArcGIS API for Python
  • Programmatically interact with surveys and data

When to use Survey123 Connect vs Web Designer

Survey123 Connect is designed for users who need advanced survey capabilities beyond what the web-based Survey123 Web Designer provides. For a detailed comparison of both authoring tools, see Types of Survey123 authoring tools.

Prerequisites

Before using Survey123 Connect, ensure you have:

  • ArcGIS Account: ArcGIS Online or ArcGIS Enterprise account with publishing privileges
  • System Requirements: Windows 10/11, macOS 10.14+, or Linux
  • Microsoft Excel: For creating and editing XLSForm spreadsheets
  • XLSForm Knowledge: Basic understanding of XLSForm structure and syntax
  • Network Access: Internet connection for publishing and data synchronization

Installation and setup

Download and install

  1. Download Survey123 Connect from the Survey123 resources page
  2. Run the installer and follow the installation wizard
  3. Launch Survey123 Connect from your desktop or start menu
  4. Sign in with your ArcGIS Online or ArcGIS Enterprise credentials

First-time setup

  1. Configure your workspace by selecting a folder for your survey projects
  2. Set default settings for survey publishing and data collection
  3. Test your connection to ArcGIS by creating a simple survey
  4. Verify permissions ensure you have publishing privileges

How to create advanced surveys with Connect

To create advanced surveys with Survey123 Connect, you use the desktop application to design complex forms using XLSForm spreadsheets in Microsoft Excel. Connect provides powerful capabilities for building sophisticated surveys with advanced logic, calculations, and validation that go beyond what's possible with the web-based designer.

The general steps are:

  1. Download and install Connect: Get the desktop application from the Survey123 resources page
  2. Create a new survey: Start from a template or blank form and configure basic settings
  3. Design with XLSForm: Use Microsoft Excel to create and configure survey structure and logic
  4. Preview and test: Test your survey logic and calculations before publishing
  5. Publish to ArcGIS: Deploy the survey to ArcGIS Online or Enterprise for data collection

Connect interface and workflow

Survey123 Connect provides a desktop interface for creating advanced surveys using the XLSForm standard. You work with Microsoft Excel spreadsheets to define survey structure, logic, and appearance.

Key interface components:

  • Survey management: Create, edit, and manage survey projects
  • XLSForm editor: Microsoft Excel integration for survey design
  • Preview functionality: Test surveys before publishing
  • Publishing tools: Deploy surveys to ArcGIS with advanced options
  • Python integration: Built-in tools for automation and scripting

XLSForm structure and parameters

When creating surveys with Connect, you work with XLSForm spreadsheets that define survey structure and behavior:

Core XLSForm columns:

  • type: Question type (text, select_one, integer, date, etc.)
  • name: Unique field identifier for the question
  • label: Question text displayed to users
  • relevant: Conditional logic for showing/hiding questions
  • constraint: Validation rules and data constraints
  • calculation: Computed fields and automatic calculations

Advanced XLSForm features:

  • repeat: Create repeating groups of questions
  • group: Organize questions into logical sections
  • appearance: Customize question display and behavior
  • choice_filter: Dynamic choice lists based on conditions
  • media: Add images, audio, and video to questions

Connect installation and setup

To get started with Survey123 Connect, download and install the desktop application:

Use dark colors for code blocksCopy
1
https://doc.arcgis.com/en/survey123/desktop/get-started/download-survey123.htm

XLSForm configuration options

When creating advanced surveys with Connect, you can configure various XLSForm parameters:

Question types:

  • text: Single-line and multi-line text input
  • select_one: Single choice from a list
  • select_multiple: Multiple choices from a list
  • integer: Whole number input with validation
  • decimal: Decimal number input
  • date: Date picker with format options
  • geopoint: GPS coordinate capture

Logic and validation:

  • relevant: Conditional logic expressions
  • constraint: Data validation rules
  • calculation: Computed field expressions
  • required: Make fields mandatory

Advanced features:

  • group: Question grouping and organization (use field-list appearance for multiple pages)
  • appearance: Custom display options including field-list for page breaks
  • repeat: Repeating question groups
  • media: Image, audio, and video support

Best practices

Follow these essential best practices to create effective surveys and avoid common pitfalls. Focus on planning your survey structure, testing thoroughly, and maintaining data quality throughout your workflow.

  • Plan before building: Design your survey structure and logic before creating the XLSForm
  • Test extensively: Preview and test all logic, calculations, and validation before publishing
  • Use clear naming: Choose descriptive field names that are easy to reference in calculations
  • Validate data: Implement proper constraints and validation to ensure data quality
  • Stay current: Use the latest version of Survey123 Connect for the most up-to-date features and bug fixes

Code examples

Below are code examples showing how to use XLSForm syntax to create advanced survey features:

Basic question types

The example below shows how to create a survey with basic question types.

typenamelabelrequired
textnameWhat is your name?yes
select_onegenderGenderno
integerageAgeno
datebirthdateDate of birthno

Conditional logic

The example below shows how to show a question only if a previous answer is "Yes":

typenamelabelrelevant
select_one yes_noconsentDo you consent?
textdetailsPlease provide details${consent} = 'yes'

Data validation

The example below shows how to force a field to accept only numbers less than or equal to another field:

typenamelabelconstraintconstraint_message
integermax_valEnter max value
integeryour_valEnter your value. <= ${max_val}Value must be ≤ max value

Calculations and auto-population

The example below shows how to auto-calculate a field based on previous answers:

typenamelabelcalculation
integeraEnter value A
integerbEnter value B
calculatesum_abSum of A and B${a} + ${b}

Advanced validation

The example below shows how to enforce a valid URL format using regular expressions:

typenamelabelconstraintconstraint_message
textwebsiteEnter websiteregex(., '^https?://.+')Must be a valid URL

Appearance Customization

The example below shows how to set a question to appear as a multiline text box:

typenamelabelappearance
textcommentsCommentsmultiline

Multiple-page surveys

The example below shows how to create a multiple-page survey using groups with field-list appearance:

typenamelabelappearance
begin grouppage1Personal Informationfield-list
textnameWhat is your name?
integerageWhat is your age?
end group
begin grouppage2Contact Informationfield-list
textemailWhat is your email?
textphoneWhat is your phone?
end group

Signature capture

The example below shows how to embed a signature field directly in the form:

typenamelabelappearance
imagesignatureDigital Signaturesignature

Tutorials

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.