This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I am using "between" type slicer for dates to filter two tables. one is for day basis data and another is for MTD.
In Between Slicer, i'm selecting dates 1st to 9th of September.
In MTD table, it is working fine as there i need data of 1st to 9th of September.(This is completed)
Another table needs to filter only for last date which is 9th of september in this case.
How to solve this.
Need help.
Thanks,
Gaurav
Solved! Go to Solution.
@Anonymous , Try like
measure =
var _max =maxx(allselected(date), Date[date])
return
calculate([measure], filter(Date, Date[date] =_max))
Hi @Anonymous ,
You can use the following filter in your measure(Use date column in Date table for slicer). For MTD table:
FILTER(ALL(MTD TABLE),MTD TABE[Date] IN VALUES(Date[Date]))
For another table:
FILTER(ALL(ANOTHER TABLE),ANOTHER TABE[Date]= MAX(Date[Date]))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hi @amitchandak
measure =
var _max =maxx(allselected(date), Date[date])
return
calculate([measure], filter(Date, Date[date] =_max))
This measure is the Calculated measure used or above measure.If this is calculated measure then how i'll solve the same for 5 measure and one count(value) coming from table.
Hi @Anonymous ,
You can use the following filter in your measure(Use date column in Date table for slicer). For MTD table:
FILTER(ALL(MTD TABLE),MTD TABE[Date] IN VALUES(Date[Date]))
For another table:
FILTER(ALL(ANOTHER TABLE),ANOTHER TABE[Date]= MAX(Date[Date]))
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
@Anonymous
You can get the last date using te following function and use it in your formula.
_LastDate = MAX(Dates[Date])
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 26 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 45 | |
| 43 | |
| 41 | |
| 21 | |
| 20 |