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 dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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?
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 |
---|---|
63 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
41 | |
40 |