Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
SHullen
Frequent Visitor

Count of Students that exist in all terms selected

I have a datasource with Student information.  I'd like to count the unique students that exist in all selected terms.  I have a test calculation that kind-of works.  The correct answer is 2 but my report gives me 2 for all races that I add.  I need the calculation to only show results for the students of each race/gender who have records in all terms.
Here's my DAX code and the results I'm getting.  In this example, only Student 11111 should be counted.

SHullen_0-1713311620471.png

 

 

Term_Cnt_F = CONVERT(CALCULATE(DISTINCTCOUNT('dw vw_Exec_Course_Performance'[Term])
,
ALLSELECTED('dw vw_Exec_Course_Performance') )
- CALCULATE(DISTINCTCOUNT('dw vw_Exec_Course_Performance'[StudentID])
,
FILTER(ALLSELECTED('dw vw_Exec_Course_Performance')
,'dw vw_Exec_Course_Performance'[StudentID]=MAX('dw vw_Exec_Course_Performance'[StudentID]))) ,INTEGER)

SHullen_0-1713310819769.png

Thanks to anyone who can help me with this!!

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

=VAR _terms=ALLSELECTED('dw vw_Exec_Course_Performance'[Term]) RETURN COUNTROWS(FILTER(VALUES('dw vw_Exec_Course_Performance'[StudentID]),ISEMPTY(EXCEPT(_terms,CALCULATTABLE(VALUES('dw vw_Exec_Course_Performance'[Term]))))))

View solution in original post

4 REPLIES 4
wdx223_Daniel
Super User
Super User

=VAR _terms=ALLSELECTED('dw vw_Exec_Course_Performance'[Term]) RETURN COUNTROWS(FILTER(VALUES('dw vw_Exec_Course_Performance'[StudentID]),ISEMPTY(EXCEPT(_terms,CALCULATTABLE(VALUES('dw vw_Exec_Course_Performance'[Term]))))))

Thank you so much Daniel!!!  This works perfectly as expected.

Anonymous
Not applicable

Hi @SHullen ,

 

Thanks for the reply from wdx223_Daniel .

 

Please try this modified measure:

Term_Cnt_F =
VAR SelectedTermsCount = DISTINCTCOUNT('dw vw_Exec_Course_Performance'[Term])
VAR StudentsInAllTerms =
     CALCULATETABLE(
         SUMMARIZE(
             'dw vw_Exec_Course_Performance',
             'dw vw_Exec_Course_Performance'[StudentID],
             "TermsCount", CALCULATE(DISTINCTCOUNT('dw vw_Exec_Course_Performance'[Term]))
         ),
         ALLSELECTED('dw vw_Exec_Course_Performance')
     )
RETURN
COUNTROWS(
     FILTER(
         StudentsInAllTerms,
         [TermsCount] = SelectedTermsCount
     )
)

 

Is this correct?

vhuijieymsft_0-1713335103527.png

 

If you only select 11111 it looks like this:

vhuijieymsft_1-1713335103528.png

 

pbix file is attached.

 

I would be grateful if you could provide me with sample data for testing, please remove any sensitive data in advance.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

Thank you so much for responding!!  Daniel's code worked perfectly as I needed it to but I will review your code when I have a chance.

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Users online (25)