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
nasbkrv
Regular Visitor

Last week formula

Hi,

I have a report page with slicers for Year, Week from-To, Last week.

001.png

But I have an issue with my Last Week formula and the interaction with the Year filter. Last week formula is:  IF (YEAR (Dates[Dates] ) = YEAR ( TODAY () ) &&  Dates[Dates]=TODAY()-7,"Yes", "No"). Last week includes dates from 2020 (28-31 Dec) and from 2021 (1-3 Jan), so the Last week formula doesn’t work right. I tried to use multiple selection, choosing 2020&2021 from the year filter, but even then, my last week calculation didn't work.

Do you have any ideas for a Last Week formula which can interact with the Year filter correctly, especially in cases where the last week includes dates from two years.

Thank you.

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @nasbkrv ,

 

Please create Year_Week column as filter condition first.

 

Year_week = 'Table'[week]+'Table'[year]*100

 

Then create Last week column:

 

IsLastWeek2 = 
var current_date = CALCULATE(
    MIN('Table'[Date]),
    FILTER('Table',
    'Table'[Year_week]=MAX('Table'[Year_week]))
    )
return 
IF('Table'[Date]<current_date&&
    'Table'[Date]>=current_date-7,
"Yes",
"No")

 

V-lianl-msft_1-1610012056229.png

 

Sample .pbix

 

Best Regards,
Liang
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

4 REPLIES 4
V-lianl-msft
Community Support
Community Support

Hi @nasbkrv ,

 

Please create Year_Week column as filter condition first.

 

Year_week = 'Table'[week]+'Table'[year]*100

 

Then create Last week column:

 

IsLastWeek2 = 
var current_date = CALCULATE(
    MIN('Table'[Date]),
    FILTER('Table',
    'Table'[Year_week]=MAX('Table'[Year_week]))
    )
return 
IF('Table'[Date]<current_date&&
    'Table'[Date]>=current_date-7,
"Yes",
"No")

 

V-lianl-msft_1-1610012056229.png

 

Sample .pbix

 

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

amitchandak
Super User
Super User

@nasbkrv , Better to have a separate date or week table. Then have rank on Week start date or Year Week YYYYWW format and use that

 

New column

Week Rank = RANKX(all('Date'),'Date'[Year Week],,ASC,Dense) //YYYYMM format

 

new measures
This Week = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])))
Last Week = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])-1))

 

refer Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8

I'm using this formula to get distinct count instead of sum as I have to count the number of emails.

 

But I'm not getting the right output with this relation below:

 

Count This Week = CALCULATE(DISTINCTCOUNT('SharedMailbox'[Sender.Address]), FILTER(ALL('SharedMailbox'),'SharedMailbox'[WeekRank]=max('SharedMailbox'[WeekRank])))
 
Count Last Week = CALCULATE(DISTINCTCOUNT('SharedMailbox'[Sender.Address]), FILTER(ALL('SharedMailbox'),'SharedMailbox'[WeekRank]=max('SharedMailbox'[WeekRank])-1))
 
P.S: I have performed the other steps for week rank and week start date and week end date.
everything is ok, just getting the wrong count for above 2 measures.
 
Help!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

@amitchandak any idea why This week and last week return blank?

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.

Top Solution Authors