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
Anonymous
Not applicable

Student Retention Term by Term and Year by Year

Hello - I am a beginner with Power BI and I am looking for a good way to display student retention term by term and year by year broken out by the Program and then drilling down by Student Program. I linked the data I was given to work with but Im not sure where to even start. Would anyone be willing to help me get started and then I can take it from there?   Student Retention 

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

You can refer the following links to create the retention report:

Higher Education Student Retention Report

Higher Education Analytics using Power BI #1: Retention

Customer Retention in Power BI: DAX Measures

yingyinr_0-1667542092672.gif

Or you can explain your expected result with the logic and special examples, later we can provide the suitable solution. Thank you.

Best Regards

Anonymous
Not applicable

Thank you for your reply. I am very interested in this example - Higher Education Analytics using Power BI #1: Retention but the link to download and play with the data no longer exists.

amitchandak
Super User
Super User

@Anonymous , You need a separate Year/Date table, Joined to your table. And then need this year vs last year formula

 

//Only year vs Year, not a level below

This Year = CALCULATE(Count('Table'[Student Id]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])))
Last Year = CALCULATE(Count('Table'[Student ID]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])-1))

 

 

retain

Countx(filter( values(Table[Student ID]) , not(isblank([This Year])) && not(isblank([Last Year])) ) , [Student ID])

 

 

refer

Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://www.youtube.com/watch?v=W4EF1f_k6iY

 

Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count:
Learn Power BI Advance - Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://www.youtube.com/watch?v=W4EF1f_k6iY

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.