Hi guys,
I would like to know if there is a way to define an attribute in one dimension where its label (label_attribute) would be a concat of two columns, so that it is interpreted by sql engine as:
concat (lastname, “ ", firstname) as fullname
For example I have in my model:
……...
"name":"employees",
        "label": “Employees",
        "levels": [
               {
                   "name”:"employee",
                   "label”:"Employee",
                   "attributes": ["id", "lastname", "firstname"],
                   "label_attribute":"lastname"                           
               }
           ]
       },
It could be something like:
		"label_attribute”:{“expression”:  “concat(employees.lastname, ‘  ‘ , employees.firstname)”}
or even in another way, the important thing is that I can use the concat function on the joined table instead of adding a column named fullname in the fact table.