Forum Discussion

paolomint's avatar
paolomint
Icon for Helper III rankHelper III
5 years ago
Solved

Week to date for no ended week

Dear all, I'm working on a Week to date calculation a little bit different respect to the tutorials I found on internet. For eg. https://radacad.com/week-to-date-calculation-in-power-bi-with-dax  ...
  • parry2k's avatar
    5 years ago

    paolomint based on that post, you should calculate the start and end date by subtracting out of it and that will give you the previous week's date, and then it should work.

     

    something like this, taking the DAX from the post:

     

    Week to Date Sales = 
    var CurrentDate=LASTDATE(DimDate[FullDateAlternateKey])
    var DayNumberOfWeek=WEEKDAY(LASTDATE(DimDate[FullDateAlternateKey]),3)
    var __startDate = DATEADD(
        CurrentDate,
        -1*DayNumberOfWeek,
        DAY) - 7
    var __endDate = CurrentDate - 7
    return
    CALCULATE(
        SUM(FactInternetSales[SalesAmount]),
    DATESBETWEEN(
        DimDate[FullDateAlternateKey], __startDate, __endDate 
    )
    )
    

     

    Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS  I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.