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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AnnJ2209
Frequent Visitor

sort by within this week

Hi,

 

I am trying  sort by relativ date, whitin this week - but it takes sunday as first weekday - is there any settings where i can change it ? so it will take 9-11-2020 - 15-11-2020 ?

 

AnnJ2209_0-1605191665635.png

 

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @AnnJ2209 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

c1.png

 

You may create a measure as below. Today is 11/16/2020. You may remove '-1' to get the result for current week.

Visual Control = 
var d = SELECTEDVALUE('Table'[Date])
var y = YEAR(d)
var wn = WEEKNUM(d,2)
return
IF(
    y=YEAR(TODAY())&&wn=WEEKNUM(TODAY(),2)-1,
    1,0
)

 

Then you need to put the measure in the visual level filter to display the result.

c2.png

 

Best Regards

Allan

 

If this post helps,then consider Accepting it as the solution to help other members find it faster.

View solution in original post

2 REPLIES 2
v-alq-msft
Community Support
Community Support

Hi, @AnnJ2209 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

c1.png

 

You may create a measure as below. Today is 11/16/2020. You may remove '-1' to get the result for current week.

Visual Control = 
var d = SELECTEDVALUE('Table'[Date])
var y = YEAR(d)
var wn = WEEKNUM(d,2)
return
IF(
    y=YEAR(TODAY())&&wn=WEEKNUM(TODAY(),2)-1,
    1,0
)

 

Then you need to put the measure in the visual level filter to display the result.

c2.png

 

Best Regards

Allan

 

If this post helps,then consider Accepting it as the solution to help other members find it faster.

amitchandak
Super User
Super User

@AnnJ2209 , Other than regional settings I doubt anything you can do to change this. Please log an idea or vote for an idea - https://ideas.powerbi.com/ideas/

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.