Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
apptime adj = if [academic year]="2016-2017" then Date.AddDays([apptime],1095) else if [academic year]="2017-2018" then Date.AddDays([apptime],730) else if [academic year]="2018-2019" then Date.AddDays([apptime],365) else [apptime]
Newest Date = MAX(application_count[apptime])
Then, filter application counts before the current time from previous years:
Total Apps Adj = if(application_count[apptime adj]<application_count[Newest Date],application_count[Total Apps],BLANK())
This returns the desired result, but the totals are off. Thanks in advance for you help.
You may use ISINSCOPE to add a measure.
Measure 2 =
IF (
ISINSCOPE ( 'Dates Adj'[Month Year] ),
SUM ( application_count[Total Apps Adj] ),
SUM ( application_count[Total Apps] )
)
@v-chuncz-msft thanks for your help. I applied your solution, but it did not change anything.
Could you show me the solution in the actual .pbix file?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 78 | |
| 46 | |
| 37 | |
| 31 | |
| 26 |