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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Trying to Replicate a Total in a Measure

I am trying to create a measure that replicates the total value in this table:

PUG_0-1596562917772.png


The total fluctuates as filters are applied and I would need the measure to do the same. Ultimately I will use the measure to calculate a "Percent of Students Enrolled in Top 10 Programs" value.

For instance:
1,219 (Sum of Top 10 Program Enrollment Measure) / 2000 (Total Students) = 61%
 

Thank you in advance!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I have solved this, thank you for the input. The two measures needed: 

 

Top10 Program Total =
var A = SUMMARIZE('TE',[program],"Enrollment",SUM('TE'[
student_flag])) 

var Top10 = TOPN(10,A,[Enrollment],DESC)
RETURN
SUMX(Top10,[Enrollment])

T10P % of TE = [T10P Total]/[Total Students Distinct]

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

I have solved this, thank you for the input. The two measures needed: 

 

Top10 Program Total =
var A = SUMMARIZE('TE',[program],"Enrollment",SUM('TE'[
student_flag])) 

var Top10 = TOPN(10,A,[Enrollment],DESC)
RETURN
SUMX(Top10,[Enrollment])

T10P % of TE = [T10P Total]/[Total Students Distinct]

v-xuding-msft
Community Support
Community Support

Hi @Anonymous ,

 

You could try like this:

Measure 2 = 
var total = SUMX(ALLSELECTED('Table'[Program]), [Measure])
return
DIVIDE(total,2000)

 

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Super User
Super User

@Anonymous This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
amitchandak
Super User
Super User

@Anonymous , TOPN is one option another option is Rank

example

Top 10 City Rank = CALCULATE([Sales],TOPN(10,all(Geography[City]),[Sales],DESC),VALUES(Geography[City Id]))

 

For GT

Sum(Table[total student])

or

calculate(Sum(Table[total student]) , allselected(Table))

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.