Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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))
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
11 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
11 |