Hello support,
I've been trying to merge 2 database fields into one field using the SQL operator 'CONCAT'
My goal here is to have the software name + version in one field and generate a 'chart report' for which I can put a Pie chart on my dashboard.
Select CONCAT(tblSoftwareUni.softwareName, tblSoftware.softwareVersion) From tblSoftwareUni) As name_version
When the report generator updates, it shows me the following error message.
Error while saving report: "'CONCAT' is not a recognized built-in function name."
Is there any other way I should use to achieve this?