Learn how to join multiple text strings into one single combined text value.
The CONCATENATE function concatenates two or more text strings into one string.
concatenate(string1, string2, ..)
string1, string2.. - Text strings to be joined
CONCATENATE( "Today's profit is ", "6000" ) // Returns 'Today's profit is 6000'
CONCATENATE
Last updated 6 months ago
Was this helpful?