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.
I have four measures originated from each different table and these tables are related with one calendar table.
I want to get values of each months from those measures in specific range selected by the month from the calendar table.
The range should be like this;
If I choose Febuary 2024, the range should be January 2024 ~ March 2024.
If I choose August 2024, the range should be January 2024 ~ September 2024.
So it's basically, [Start of Year] to [Next Month].
I fulfilled this by making a calculated table, but since there is some capacity issue, I want to try it with just measures.
The ideal visual should be like the first table visual which was made by the calculated table,
but I can only get chosen month and each range's totals with measures like the below one.
the daxes I tried in measures are like these :
VAR Result =
CALCULATE(
Calculation
,ALL(v_dim_calendar),
v_dim_calendar[date]>=DATE(SELECTEDVALUE(v_dim_calendar[year]),1,1),
v_dim_calendar[date]<=EOMONTH(MAX(v_dim_calendar[date]),1))
RETURN
Result
and,
VAR Result =
CALCULATE(
Calculation
,DATESBETWEEN(v_dim_calendar[date],STARTOFYEAR(v_dim_calendar[date]),EOMONTH(MAX(v_dim_calendar[date]),1)))
RETURN
Result
Any help would be so thankful.
Solved! Go to Solution.
Hi @oneMills33
Unfortunaltely, it's not support for power bi to implement this function.
Maybe you can try bookmark:
First of all, I create a set of sample:
Then create a slicer, for example:
Then add a bookmark in the view, and rename it:
Insert > buttons
Format > Action > Bookmark
Style > Text
The result is as follow:
Best Regards,
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @oneMills33
Unfortunaltely, it's not support for power bi to implement this function.
Maybe you can try bookmark:
First of all, I create a set of sample:
Then create a slicer, for example:
Then add a bookmark in the view, and rename it:
Insert > buttons
Format > Action > Bookmark
Style > Text
The result is as follow:
Best Regards,
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
thank you so much for the suggestion but unfortunately the calendar range is so vast book marking is quite impossible rn. but i appreciate for assuring that the problem is not solvable finally lmao!
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 |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
8 |