Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
71 | |
38 | |
31 | |
27 |
User | Count |
---|---|
91 | |
50 | |
44 | |
40 | |
35 |