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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all, I am trying to show a 3 week snapshot based on the selected date that the user chooses.
So for 1/1/2022, in the table i would like to only see 1/1/2022 to 1/21/2022 and the bookings associated with those dates. Both of the dates being used in the slicer and table are the same date column in the Calendar table. I tried ranking the dates but that appears to be ranking per row in the table. Thank you for the help.
Solved! Go to Solution.
hi @abeirne
you would
1) need an isolated table for the Date slicer
2) plot the table visual with a measure refering the slicer-selected value like this:
@Booking =
VAR _date = SELECTEDVALUE(datetbl[Date])
RETURN
CALCULATE(
MAX(data[Booking]),
KEEPFILTERS(data[Date]>=_date &&data[Date]<=_date+13)
)
i worked like this:
hi @abeirne
you would
1) need an isolated table for the Date slicer
2) plot the table visual with a measure refering the slicer-selected value like this:
@Booking =
VAR _date = SELECTEDVALUE(datetbl[Date])
RETURN
CALCULATE(
MAX(data[Booking]),
KEEPFILTERS(data[Date]>=_date &&data[Date]<=_date+13)
)
i worked like this:
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 |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 19 | |
| 12 | |
| 10 |