Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
abeirne
Helper II
Helper II

Relative date based on slicer date

Hi all, I am trying to show a 3 week snapshot based on the selected date that the user chooses. 

3 Week Snapshot.PNG

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. 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

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:

FreemanZ_1-1671850219843.png

FreemanZ_2-1671850250829.png

FreemanZ_3-1671850273285.png

 

 

View solution in original post

1 REPLY 1
FreemanZ
Super User
Super User

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:

FreemanZ_1-1671850219843.png

FreemanZ_2-1671850250829.png

FreemanZ_3-1671850273285.png

 

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.