Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have 2 files
1. List of all students
2. List of all students activities (with dates)
How can I get a list of students, who didn't participate at any activities in a given time period?
Thanks
Solved! Go to Solution.
@Dark_crab , assume table 1 (list of student) is having 1 to Many join with table2.
Then create a measure like
_cnt = count(Table2[Student])
Student do not have any activity
countx(values(Table[Student]), if(isblank(_cnt) , [Student], blank())
Thank you. It worked and now i understand the logic behind it)
@Dark_crab , assume table 1 (list of student) is having 1 to Many join with table2.
Then create a measure like
_cnt = count(Table2[Student])
Student do not have any activity
countx(values(Table[Student]), if(isblank(_cnt) , [Student], blank())
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.