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.
Hi
Newbie to DAX here 🙂
We have an existing Accounting Period dimension and this is joined to the Gross (Fact) on accounting_period:
I am using Quarter Name as a slicer and the Quarter Name values appear as below:
I have this Measure that gives me the total Gross Premium but I'd like this total to be up to the end of the Quarter Name.
So SUM the Gross Premium for values <= Quarter Name
I can do this in SQL but wondering how to achieve this in DAX. Any help would be appreciated
Thanks
Solved! Go to Solution.
@brian0782 , Try like
measure =
var _max = maxx(allselected(period), period[Qtr name]) //you can use numeric Year Qtr No too, in place qtr name
return
calculate([measure], filter(all(period),period[Qtr name] <=_max))
@brian0782 , Try like
measure =
var _max = maxx(allselected(period), period[Qtr name]) //you can use numeric Year Qtr No too, in place qtr name
return
calculate([measure], filter(all(period),period[Qtr name] <=_max))
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |