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
JoanElGran1899
Frequent Visitor

Week Sunday to Saturday and also the last week ( show sunday to saturday)

Hi everyone,
I am here again with more doubts to solve, can anyone help me? jeje

I need to calculate the weeks Sunday to Saturday.
I did this logic with the normal week of 7 days and Monday to Sunday

Last Week Current Date tmp = 
var dies = if (DAY(TODAY()) <> 7, 7, 6)
var data_setmana_anterior = DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())-dies)
return
if(WEEKNUM('Dim Calendar'[Date],2) = WEEKNUM(data_setmana_anterior,2) ,"Last Week",FORMAT(WEEKNUM('Dim Calendar'[Date],2),"00"))

Basically, I think I need a DAX formula to get last week's values between Saturday and Sunday.
Kind regards,
att:JoanElGran

2 ACCEPTED SOLUTIONS

Hi @v-yangliu-msft ,
First of all thanks for your help, but what I want is this but the week i want to Sunday to Saturday. 
Like this:

JoanElGran1899_0-1649661753609.png

Cheers,
Joan



View solution in original post

v-yangliu-msft
Community Support
Community Support

Hi  @JoanElGran1899 ,

Here are the steps you can follow:

1. Create calculated column.

Last week weekend =
var _today=TODAY()
var _weektoday=WEEKNUM(TODAY(),1)
var _week1=WEEKDAY('Dim Calendar'[Date],2)
return
IF(
    WEEKNUM('Dim Calendar'[Date],1)=_weektoday-1,"Last week",FORMAT(WEEKNUM('Dim Calendar'[Date],1),"00")
)
week1 =
 WEEKNUM('Dim Calendar'[Date],1)
Week2 =
FORMAT( WEEKDAY('Dim Calendar'[Date],1),"dddd")

2. Result:

vyangliumsft_0-1649725529189.png

Please click here for the pbix file

Does the result meet your expectations.

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @JoanElGran1899 ,

Here are the steps you can follow:

1. Create calculated column.

Last week weekend =
var _today=TODAY()
var _weektoday=WEEKNUM(TODAY(),1)
var _week1=WEEKDAY('Dim Calendar'[Date],2)
return
IF(
    WEEKNUM('Dim Calendar'[Date],1)=_weektoday-1,"Last week",FORMAT(WEEKNUM('Dim Calendar'[Date],1),"00")
)
week1 =
 WEEKNUM('Dim Calendar'[Date],1)
Week2 =
FORMAT( WEEKDAY('Dim Calendar'[Date],1),"dddd")

2. Result:

vyangliumsft_0-1649725529189.png

Please click here for the pbix file

Does the result meet your expectations.

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

v-yangliu-msft
Community Support
Community Support

Hi  @JoanElGran1899 ,

Here are the steps you can follow:

1. Create calculated column.

Last week weekend =
var _today=TODAY()
var _weektoday=WEEKNUM(TODAY(),2)
var _week1=WEEKDAY('Dim Calendar'[Date],2)
return
IF(
    WEEKNUM('Dim Calendar'[Date],2)=_weektoday-1 &&_week1 in {6,7},"Last week weekend",FORMAT(WEEKNUM('Dim Calendar'[Date],2),"00")
)

2. Result:

vyangliumsft_0-1649654517809.png

Please click here for the pbix file.

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Hi @v-yangliu-msft ,
First of all thanks for your help, but what I want is this but the week i want to Sunday to Saturday. 
Like this:

JoanElGran1899_0-1649661753609.png

Cheers,
Joan



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.