Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I have a report with a weeknumber dropdown filter from a calendar table. I would like it if the default filter would always be the current week.
Now users need to activily change the filter each month/week while 90% of the time they are interested in the current week/month.
User should still be able to select the other weeks.
I was wondering if there is a possiblity to achieve this.
I have an extended calendar table with week and month offsets.
Solved! Go to Solution.
@Anonymous
You can add a column to your date table along these lines.
Week = 
VAR _Today = TODAY()
RETURN 
IF ( YEAR ( [Date] ) = YEAR ( _Today ) &&
    WEEKNUM ( [Date] ) = WEEKNUM ( _Today ),
    "Current Week",
    ***** whatever you normally show for month/week goes here *****
)
Then you put that column in your slicer and select "Current Week". As the meaning of current week changes the date table will update and your report will shift with it.
@Anonymous 
You can create a weeknumber column, and then just use the TOP N filter on the visual with this weeknumber column. So the visual will displays the latest week data, and also allows you select other weeks on the slicer.
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@Anonymous 
You can create a weeknumber column, and then just use the TOP N filter on the visual with this weeknumber column. So the visual will displays the latest week data, and also allows you select other weeks on the slicer.
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@Anonymous
You can add a column to your date table along these lines.
Week = 
VAR _Today = TODAY()
RETURN 
IF ( YEAR ( [Date] ) = YEAR ( _Today ) &&
    WEEKNUM ( [Date] ) = WEEKNUM ( _Today ),
    "Current Week",
    ***** whatever you normally show for month/week goes here *****
)
Then you put that column in your slicer and select "Current Week". As the meaning of current week changes the date table will update and your report will shift with it.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.