Forum Discussion
Anonymous
4 years agoNot applicable
How to do dynamic left anti join?
Hi, I want to perform dynamic left anti join in powerbi. I have an erollment table in which i have user's emails and courses in which users are enrolled in and i have second table called users in w...
- 4 years ago
amitchandak
4 years agoSuper User
Anonymous , Check for use opted for that course. But need a separate usee table for that
Enrolled = countrows(enrollment )
not enrolled =if(isblank(countrows(enrollment ) ) , User[user], blank() )
not enrolled count = countx(values(User[user]), if(isblank(countrows(enrollment ) ) , User[user], blank() ) )
Anonymous
4 years agoNot applicable
Hi Amit, I also need a drill down report to show the users details. Will this approach work then?