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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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