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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
akhaliq7
Post Prodigy
Post Prodigy

Require a scalar value based on the latest week number

I have a income field that needs to be returned (scalar value) filtered on the latest week. E.G. table1[income], table 2[week number]. 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @akhaliq7 

I suppose table2 filters table1. Then

Last Week Income =
VAR LastDateWithIncome =
    CALCULATE ( MAX ( table1[Date] ), REMOVEFILTERS () )
VAR LastWeekWithIncome =
    WEEKNUM ( LastDateWithIncome, 2 )
RETURN
    CALCULATE ( SUM ( table1[income] ), table2[week number] = LastWeekWithIncome )

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @akhaliq7 

I suppose table2 filters table1. Then

Last Week Income =
VAR LastDateWithIncome =
    CALCULATE ( MAX ( table1[Date] ), REMOVEFILTERS () )
VAR LastWeekWithIncome =
    WEEKNUM ( LastDateWithIncome, 2 )
RETURN
    CALCULATE ( SUM ( table1[income] ), table2[week number] = LastWeekWithIncome )
amitchandak
Super User
Super User

@akhaliq7 , week based today

 

This Week today =
var _st = today() +-1*WEEKDAY(today(),2)+1
var _end =today()+ 7-1*WEEKDAY(today(),2)
return
CALCULATE(SUM(Sales[Sales Amount]),filter('Date','Date'[Date]>= _st && 'Date'[Date]<=_end ))

//use all('Date') if need in filter

 

 

else you need columns and measures

 

new columns
Week Start date = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
Week End date = 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)
Week Rank = RANKX(all('Date'),'Date'[Week Start date],,ASC,Dense)
OR
Week Rank = RANKX(all('Date'),'Date'[Year Week],,ASC,Dense) //YYYYWW format

 

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

 

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

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.