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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
nick9one1
Helper III
Helper III

set current week as 'default'

I have a slicer in a report that allows uers to select a week. The slicer shows the first day of every week as an option. 

nick9one1_0-1686909876991.png


The column looks up the row year '2023' and week number '35' to filter a Date Dimension table, and return a date from the first of week column. 

 

 

FW as Date = 
CALCULATE(
    MAX('Dim Date'[FirstOfWeek].[Date]),
    FILTER(
        ALL('Dim Date'),
        [FinancialYear]='Lettings Fact_Lettings_Summary'[FinancialYear] &&
        [FinancialWeek]='Lettings Fact_Lettings_Summary'[FinancialWeek]
    )
)

 

 

 

I would like to amend this so that the latest year and week value returned is formatted as a fixed text value e.g. 'Default'.
Then I can publish the report with 'default' selected in the slicer. Then as the report refreshes weekly and new weeks are added,

it will always present the data with the latest week selected (Default). 

Can anyone suggest how to do this? 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @nick9one1 ,

 

To achieve this you need to create a new column on your dataset that for the current week presents a text "Current Week" and for the other ones present the Week end date you would need to sort by week end date.

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

1 REPLY 1
MFelix
Super User
Super User

Hi @nick9one1 ,

 

To achieve this you need to create a new column on your dataset that for the current week presents a text "Current Week" and for the other ones present the Week end date you would need to sort by week end date.

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors