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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Select current date and show custom periods

Greetins community!

 

I need some help with a report that i am developing.

 

The idea is te report always shows from the current date, the 2 weeks before the current date and the 2 weeks after the current date.

 

So far, I have generated the calendar dimension an tried using the relative date slicer, but this control only allows one of the two options., Is it possible to do this in power bi? 

 

 I'm looking for a way to answer this but without succes so far, any ideas?

 

The only alternative i have so far is to separate both results into different pages.

 

I already appreciate any ideas.

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , you have create a column like this in you date table and use that slicer. Assuming you have week name

 

Week Type = Switch( True(),
WEEKNUM(Date[Date] ) >= WEEKNUM( TODAY() ) -2 &&
WEEKNUM(Date[Date] ) <= WEEKNUM( TODAY() )+2,"Last 2 Week and next 2 week " ,
[Week Name]
)

 

use WEEKNUM(Date[Date],2 ) for monday week

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , you have create a column like this in you date table and use that slicer. Assuming you have week name

 

Week Type = Switch( True(),
WEEKNUM(Date[Date] ) >= WEEKNUM( TODAY() ) -2 &&
WEEKNUM(Date[Date] ) <= WEEKNUM( TODAY() )+2,"Last 2 Week and next 2 week " ,
[Week Name]
)

 

use WEEKNUM(Date[Date],2 ) for monday week

Anonymous
Not applicable

Thanks! that's amazing!

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.