Forum Discussion

GrayGunn5's avatar
GrayGunn5
Frequent Visitor
3 years ago
Solved

Matrix visual tooltip to show values

I have a table of elements such as: Each person can have multiple categories. From this table I have managed to create a matrix like this: In order to achieve this (with help from this ...
  • AlexisOlson's avatar
    3 years ago

    Try a CONCATENATEX iterator over your CALCULATETABLE (instead of using it as a filter) for the measure to use in the tooltip.

    CONCATENATEX ( _SharedIds, "ID: " & Data[IdPerson] & UNICHAR ( 10 ) )

     

    See attached.