The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
How to show default current week in the slicer each time you open the report? And how to make it Dynamic?
TIA
Tanisha
Solved! Go to Solution.
Hi @Anonymous - To implement current week on report multiple approaches are there.
Hope you already added Week Number and Year Columns in your date table.
create a calculated column
Current Week = IF(
'Date'[Year] = YEAR(TODAY()) && 'Date'[Week Number] = WEEKNUM(TODAY()),
"Current Week",
"Other Weeks"
)
apply it on page or visual level filter that current week.
other approaches reference links:
Solved: Selecting default - week value dynamically - Microsoft Fabric Community
Solved: How to set current week as default slicer - Microsoft Fabric Community
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hi @Anonymous - To implement current week on report multiple approaches are there.
Hope you already added Week Number and Year Columns in your date table.
create a calculated column
Current Week = IF(
'Date'[Year] = YEAR(TODAY()) && 'Date'[Week Number] = WEEKNUM(TODAY()),
"Current Week",
"Other Weeks"
)
apply it on page or visual level filter that current week.
other approaches reference links:
Solved: Selecting default - week value dynamically - Microsoft Fabric Community
Solved: How to set current week as default slicer - Microsoft Fabric Community
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
User | Count |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |