I have tried to convert my excel as DB using connection string and connect activity in uipath.
When I’m trying to concatenate two columns using sql query, I’m getting the error like “Execute Query: ERROR [42000] [Microsoft][ODBC Excel Driver] Undefined function ‘concatenate’ in expression.”
Help me with the concat sql query to use in uipath.
I’m using this query “Select Concat(Measure,Name) As ColumnTest from [Tablename$]” and I’m getting error like ERROR [42000] [Microsoft][ODBC Excel Driver] Undefined function ‘Concat’ in expression.
@Lahiru.Fernando
Thanks for your reply!
As said, I have tried with + operator and I’m getting the same error "Undefined function concat”…
“Select Concat (Measure+Name)AS ColumnTest from [Tablename$]”