Last updated 1 year ago
Was this helpful?
Merge multiple string values
Concat("Meeting on ", Today()) → "Meeting on 2023-01-20" Concat("Tabula ", "app") → "Tabula app"
Concat(string1, [string2...])
string... - Text values, one or more separated by a comma
string...