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
kenthub
Helper I
Helper I

Week to date so far

Ok first, please rest assured I have looked through what I presummed all possible answers in the forums first 😄

 

I am trying to create a matrix table that compares sales from the current week and previous week with the sales variance. Now here is my problem, the sales for current week will not populate unless that week is full ( as in monday - sunday). 

 

My formula works on dummy data and if I change it on this current data to 4 weeks, 3 weeks, 2 weeks, 1 week back it works. 

 

My question is how do I get the current cummulative total to show without it wanting to finish out the week? 

 

Sales-CWeek = CALCULATE([SalesTotal], SalesEntry[YearWeek] = WEEKNUM(NOW(),2) )

This will be a daily refreshed argument for our clients so they can keep track of where they are at for the week verses the previous week. 

 

 

BI-Connections.PNG

matrix-bi.PNG

1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @kenthub,

 

Could you try the formula below to see if it works?Smiley Happy

Sales-CWeek =
CALCULATE (
    [SalesTotal],
    FILTER (
        'PeriodDate',
        YEAR ( 'PeriodDate'[Date] ) = YEAR ( NOW () )
            && WEEKNUM ( 'PeriodDate'[Date], 2 ) = WEEKNUM ( NOW (), 2 )
    )
)

 

Regards

View solution in original post

2 REPLIES 2
v-ljerr-msft
Employee
Employee

Hi @kenthub,

 

Could you try the formula below to see if it works?Smiley Happy

Sales-CWeek =
CALCULATE (
    [SalesTotal],
    FILTER (
        'PeriodDate',
        YEAR ( 'PeriodDate'[Date] ) = YEAR ( NOW () )
            && WEEKNUM ( 'PeriodDate'[Date], 2 ) = WEEKNUM ( NOW (), 2 )
    )
)

 

Regards

Worked!  Thanks so much!

 

I tried something similar by setting a second filter for the current year in the Calculate function but it wasn't showing as correct. I presume the filter function simplifies that and/or makes it easier when crunching dates? 

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.