Forum Discussion
LMSReportsHelp
2 years agoFrequent Visitor
Create Measure from data across multiple rows.
I have a set of learning data in which learners are assigned between 1-3 Class names. Because these classes are tied to security roles, they technically have to complete all 3, but the leadership on ...
- Anonymous2 years ago
Thanks for the reply from Ashish_Mathur . Here I have another idea in mind, and I would like to share it for reference.
LMSReportsHelp , you can try to create a measure as follows.
Registered? = VAR _count = CALCULATE(COUNT('Table'[Student ID]), FILTER(ALLEXCEPT('Table', 'Table'[Student ID]), [Class ID] <> BLANK())) RETURN IF(_count <> BLANK(), "Yes", "No")Output:
Best Regards,
Yulia XuIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Thanks for the reply from Ashish_Mathur . Here I have another idea in mind, and I would like to share it for reference.
LMSReportsHelp , you can try to create a measure as follows.
Registered? =
VAR _count = CALCULATE(COUNT('Table'[Student ID]), FILTER(ALLEXCEPT('Table', 'Table'[Student ID]), [Class ID] <> BLANK()))
RETURN
IF(_count <> BLANK(), "Yes", "No")
Output:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.