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 all,
I'am working on a dashboard to show the development of a fleet. The dashboard consists of mainly three components:
1. A slicer to select the period,
2. A KPI that needs to show the value of the last month selected in the sliced,
3. A bar chart that shows the development of the selected months.
The issue is that when multiple months are selected in order to show a proper development of the fleet in the bar chart, the KPI card show the sum of the selected months. I aim to show in the KPI card only the last selected month of the slicer input.
The fields I use are:
1. PeriodID
2. Actuals (this consists the value to represent)
In the KPI card and bar chart I use filters to show the correct data.
I tried to write a measure for this, but I was unable to have it working. Hope somebody knows the answer.
Thanks in advance,
Thom
Solved! Go to Solution.
Something like
@Thomvdw , Try like
measure =
var _max = maxx(allselected(period), Period[period])
return
calculate([goal], filter(Period, Period[period] =_max))
or
measure =
var _max = maxx(allselected(period), Period[period])
return
calculate([goal], filter(Table, Table[period] =_max))
Something like
Many thanks Remyo, your solution worked for me!
Thanks for your quick reply!
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 |
---|---|
56 | |
54 | |
54 | |
37 | |
29 |
User | Count |
---|---|
78 | |
64 | |
45 | |
40 | |
40 |