Forum Discussion
Anonymous
10 years agoNot applicable
concatenate values
I need to unite the values of fields of type text in two different tables, how can I do?
- 10 years ago
Hi Anonymous,
You can nested CONCATENATE() within CONCATENATE() to add concatenate more characters you need.
CONCATENATE(string_expression,CONCATENATE(string_expression,string_expression))
Regards,
v-sihou-msft
10 years agoMicrosoft Employee
Hi Anonymous,
You can nested CONCATENATE() within CONCATENATE() to add concatenate more characters you need.
CONCATENATE(string_expression,CONCATENATE(string_expression,string_expression))
Regards,
DSimma
10 years agoAdvocate IV
I would usually just do the excel way ie. =(Value1)&" - "&(Value 2), I find it quicker and easier then using a function.