Skip to main content

Auto Match

Overview

The Auto Match component provides intelligent fuzzy search against another feature's data. Unlike Linked Select which requires exact selection from a dropdown, Auto Match finds the best matching record using similarity scoring — useful for data entry where exact values may vary slightly.

Matching configuration

Core settings

SettingDescription
Linked featureSource feature to match against
Value columnColumn that stores the matched record's ID
Label columnColumn displayed as the matched result
Search columnColumn searched for similarity

Matching thresholds

SettingDescriptionDefault
Match thresholdMinimum similarity score (0–1) for a result to be suggested0.7
Auto-confirm thresholdScore at which a match is automatically accepted without user confirmation0.95

Additional options

SettingDescription
Add buttonShow option to create a new record if no match is found
Edit buttonShow option to edit the matched record
PlaceholderPrompt text for the search input
Compact modeMinimal display style

How it works

  1. The user types into the auto-match field.
  2. OutDo searches the linked feature's search column using fuzzy matching.
  3. Results are ranked by similarity score.
  4. If a result exceeds the auto-confirm threshold, it is selected automatically.
  5. Otherwise, the user sees a list of suggestions ranked by match quality and picks the correct one.
  6. The matched record's ID is stored in the value column.

This is particularly useful for matching imported data against existing records, where names or identifiers may have slight variations (typos, abbreviations, different formatting).