Forum Discussion
koorosh
4 years agoPost Partisan
All values
Hello Experts, Have a list that shows partners enrolled in courses, how to make a report that shows the partners enrolled all courses.
koorosh , In a table visual put this measure with partner
6 Replies
- amitchandakSuper User
koorosh , Try a measure like
measure =
var _cnt = calculate(distinctCOUNT(Table[Course]))
return
countx(filter(summarize(Table, Table[PARTNER], "_1", calculate(distinctCOUNT(Table[Course]))), [_1] =_cnt),[Partner])- kooroshPost Partisan
Thanks, Amit, the measure returns a value, how we can get a table that returns all partners that took all courses? Like what we did for missing courses as following dax:
New table =except(crossjoin(all(Table[partner]),all(Table[Course Name])), selectcolumns(Table,"partner", Table[partner], "Course Name",Table[Course Name]))
- amitchandakSuper User
koorosh , In a table visual put this measure with partner