Forum Discussion

krdavies's avatar
krdavies
Icon for Helper I rankHelper I
6 months ago
Solved

Concat two values from dimension table into fact table

Hello everyone,    I am working with a database tracking workshop registration. I have registrations and workshops as fact tables and a number of dimension tables handling participant, instructor a...
  • MFelix's avatar
    6 months ago

    Hi krdavies,

     

    Create a measure with the following code:

    Instructors = IF(ISINSCOPE(Workshops[Workshop title]), CONCATENATEX(VALUES(Instructors[Instructor name]), Instructors[Instructor name],", "))

     

     

    See file attach.