CONCATENATE Function: Difference between revisions

From Planfix
Jump to: navigation, search
No edit summary
No edit summary
Line 6: Line 6:
}}
}}
The function concatenates arguments into a string.
The function concatenates arguments into a string.


Format:
Format:

Revision as of 09:04, 21 February 2024

The function concatenates arguments into a string.


Format:

CONCATENATE("Text_1";"Delimiter";"Text_2")

CONCATENATE()

CONCAT()


Examples:

CONCATENATE("Lewis";" ";"Nelson") = Lewis Nelson

CONCATENATE("1";"+";"4") = 1+4


Go To