Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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.
Solved! Go to Solution.
@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 , 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
Thanks! that's amazing!