Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Dear members,
I'm creating a 2022 report that shows the # of customers per month in a bar chart (Jan22-Dec22), but also as a tile with 1 number in it: the most recent value of the # of customers when you change the slicer to a specific month.
Jan22 = 100 total customers
Feb22 = 110 total customers (so +10 vs last month)
Mar22 = 105 total customers (so -5 vs last month)
When I use the slicer for the period 1-1-2022 to 31-03-2022, it is currently showing the sum of the # of customers: 315
However I would like to show the last value, so # of customers is 105.
When I would change the slicer to 1-1-2022 to 28-02-2022 it should show 110, etc.
I have added an Index column, but not sure what the next step is. Please advice.
Greatly appreciated!
Solved! Go to Solution.
Hi @Svitzer ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure =
var _max=MAXX(ALLSELECTED('Table'),[Date])
return
CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Date]=_max))
2. Result:
If I have misunderstood your meaning, please provide your desired output and your pbix without privacy information.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Svitzer ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure =
var _max=MAXX(ALLSELECTED('Table'),[Date])
return
CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Date]=_max))
2. Result:
If I have misunderstood your meaning, please provide your desired output and your pbix without privacy information.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thank you @Anonymous
Hi,
Share the download link of your PBI file.