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!View all the Fabric Data Days sessions on demand. View schedule
I have a Table 1.
This a table with consisting of dates when limits changed and actual limits.
I also have a slicer with dates.
I want - when i select a date in the slicer, it would show me the actual limit from table 1. if the dates do not match, it needs to show me the last actual dates limit before the date in the slicer..
@Elmarius123 , You an get a date like
measure =
var _max = maxx(allselected(Date),Date[Date])
var _min = mainx(allselected(Date),Date[Date])
return
calculate(Max(Table[Date]), filter(Table, Table[Date] >= _min && Table[Date] >= _max))
or you use this max date to calculate other thing
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 5 | |
| 3 |
| User | Count |
|---|---|
| 28 | |
| 20 | |
| 19 | |
| 19 | |
| 12 |