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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
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.

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.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.