top of page

Merging Fields with a Hyphen in Airtable: Step-by-Step Guide

Published on Mar 30th, 2024

Merging Fields with a Hyphen in Airtable: Step-by-Step Guide


Combining fields in Airtable to create a hyphenated result is a common task for many users seeking to format data more effectively. Whether you're concatenating two names or joining date and time fields with a hyphen, Airtable's formula field can do the job seamlessly. Here’s how to do it:


Step 1: Identify the Fields


First, decide which fields you want to combine. For example, let’s say you want to combine ‘First Name’ and ‘Last Name’ fields into a single ‘Full Name’ field.


Step 2: Add a Formula Field


Next, go to your Airtable base, and click the '+' sign to add a new field. Choose 'Formula' from the field type options.


Step 3: Write the Formula


In the formula configuration, write the following formula to merge your fields with a hyphen:


{First Name} & '-' & {Last Name}

Replace ‘First Name’ and ‘Last Name’ with the actual field names in your base. If you need spaces around the hyphen, adjust it like this:


{First Name} & ' - ' & {Last Name}

Step 4: Enjoy Your Hyphenated Field


Once you've written the formula, Airtable will automatically calculate the result for each record. You’ll have a new ‘Full Name’ field with the hyphenated result of the two original fields.


This approach can be adapted for any field types you wish to concatenate, not just text fields. Airtable’s formulas are quite powerful and can accommodate a wide array of custom data manipulations. Just ensure that the syntax of your formula is correct for it to work.


Remember, formulas are live calculations. If you change the data in your source fields, the hyphenated result will update automatically, keeping your data consistent and up-to-date.


By using formulas to combine fields, Airtable users can efficiently manipulate and present their data exactly how they need it, adding a professional touch to their databases.


bottom of page