Skip to content

=LISTMERGE

The =LISTMERGE() function accepts two semicolon separated text lists and returns a list containing all the unique entries from both lists.

=LISTMERGE(SemicolonSeparatedList1; SemicolonSeparatedList2)
  • SemicolonSeparatedList1 – The first semicolon-separated list of text values.

  • SemicolonSeparatedList2 – The second semicolon-separated list of text values.

  • Combines both lists into a single list.

  • Removes duplicate entries, so each value appears only once.

  • Returns the resulting list in the order of first occurrence.

  • Formula functions are case sensitive and must be written in ALL CAPS.

If the List A field contains:

Entry1; Entry2; Entry3

and the List B field contains:

Entry2; Entry3; Entry4

then:

=LISTMERGE([[Field: List A (Text)]]; [[Field: List B (Text)]])

Returns

Entry1; Entry2; Entry3; Entry4


LISTMERGE, merge lists, unique entries, remove duplicates, semicolon-separated list, list processing, workflow formulas, formula function