Skip to content

concat

Concatenate text values.

v = concat(text1, text2, ...)

Returns the concatenation of all arguments. Unlike strcat, preserves trailing whitespace on each input. Excel’s modern replacement for CONCATENATE.

concat('Hello', ' ', 'World') % 'Hello World'
  • textjoin — Concatenate text values with a delimiter.
  • strcat — Concatenate strings horizontally.
  • append — Concatenate strings without trimming.