Combining field values in Airtable

Plan AvailabilityAll plan types
Required permissionsOwners/Creators - Can add, delete, duplicate, rename, and customize fields
Platform(s)Web/Browser, Mac app, and Windows app (with some additional limited support on mobile)

The CONCATENATE() function joins together arguments and/or field values from any number of fields into a single text value, and follows this format: CONCATENATE(Value 1, Value 2, etc...) For example, you can join together the values of two fields by using this formula:

  • Example formula: CONCATENATE  ({Field A},  " - "  , {Field B})

  • Result:
    1500000449362joining-field-values-1.jpg

Notice the addition of " - " as a separator between the fields.

You can use concatenate to join together any number of fields and text. One of the most common uses of this function is to make the primary field in a table a unique identifier by combing several values together.

Let’s use a hiring process as an example workflow for using this same type of formula. In this case, you would create a formula in the primary field to see the candidate name and the stage of the process they're in.

1500000457841joining-field-values-2.jpg

This could assist someone managing the process to quickly view upcoming interviews in a calendar.

1500000449382joining-field-values-3.jpg

As an equivalent to CONCATENATE(), using an ampersand (&) as a separating character between values is a more simple approach to combining values.

Using the same example as the previous section, you could re-write the formula as {Candidate} & " - " & {Type}

When working with either function, remember that you may be combining different types of data - for example, a numeric value, a date string, and plain text - into a single field. See the result when we mix in a date field into the concatenated primary field using this formula: {Date} & ": " & {Candidate}, & " - " & {Type}

1500000457881joining-field-values-4.jpg

You'll need to adjust this with the DATETIME_FORMAT function to be more human readable using a formula like this: DATETIME_FORMAT({Date},'L') & ": " & {Candidate} & " - " & {Type}

360101548173joining-field-values-5.jpg

Note that when combining field type, it won't be possible to format that field type as a numeric value or a formatted date.

360099325674joining-field-values-6.gif

When working with formulas - especially when combining several fields of information - it can often be helpful to program in line breaks and other formatting features to better display the result of a formula. By using "\n" in a formula, you can program in line breaks as needed. For example, you may want to combine the fields shown below to produce a paragraph of text for a job description.

  • Example formula: {Role / Title} & " " & {Department} & " " & {Experience Required} & " " & {Description}

  • Example base setup:
    360101548153joining-field-values-7.jpg

For a more readable job description field, we can adjust the formula to use "\n" to insert line breaks in the right places.

  • Example formula: {Role} & "\n" & {Department} & "\n" & {Experience Required} & "\n \n" & {Description}

  • Result:
    360099325654joining-field-values-8.jpg

With the added line breaks, the job description becomes easier to read, and to copy and paste into other places like an online job board. To go one step further, you can even add custom text to the job description to add more context.

  • Example formula: "Job Title: " & {Role} & "\n" & "Department: " & {Department} & "\n" & "Number of years experience required: " & {Experience Required} & "\n \n" & "Job Description: " & "\n" & {Description}

  • Result:
    1500000457901joining-field-values-9.jpg