Forum Discussion
krdavies
Helper I
6 months agoConcat 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...
- 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.