Forum Discussion
Adding additional information to a matrix
- 2 years ago
I ended up working around this with SQL for my data source.
Case
when EXISTS(select 1 from CourseCompletion b where b.student= a.student and b.course like '%coursename%') then '1'
else '0'
end as 'Course1'
Hello,
It will not work if you build the matrix as described, but if you use the name on rows and than add individual measures in values you could add as many additional fields as you want.
- Amberr5672 years agoFrequent Visitor
Is there a way to make the new addition to values only appear at the right side of the matrix? I can only really successfully get something that looks like the below table. The "Training Complete" field is basically going to be the same for every course, as it would signify that all the courses are complete, so having it under every course would be redundant.
Name course 1 course 1 course 2 course 2 Status Training complete? Status Training Complete?