Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago

last week

hello all pls help me get to LAST WEEK, i have gotten 'thisweek', 'last2weeks' & 'Notthisweek'

 

ThisWeek1 = if([Week_Ending]>=now(),if([Week_Ending]-now()<7,"ThisWeek","NotThisWeek"),if(now()-[Week_Ending]<14,"Last2Weeks","NotThisWeek"))

3 Replies

  • dax's avatar
    dax
    Community Support

    Hi Anonymous , 

    I am not clear  about your requirement, if you want to create a column to define weekname, you could try below M code

    let
        Source = List.Dates(#date(2020,4,1), 30, #duration(1,0,0,0)),
        #"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
        #"Added Custom" = Table.AddColumn(#"Converted to Table", "Custom", each if Date.IsInCurrentWeek([Column1]) then "current week" else if Date.IsInPreviousNWeeks([Column1], 1) then "last 1 week"  else if Date.IsInPreviousNWeeks([Column1], 2)  then "last 2 week"  else null)
    in
        #"Added Custom"

    If this is not what you want, could you please inform me more detailed information(such as your expected output and your sample data (by OneDrive for Business))? Then I will help you more correctly.

    Please do mask sensitive data before uploading.

    Thanks for your understanding and support.
    Best Regards,
    Zoe Zhi

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

  • Anonymous's avatar
    Anonymous
    Not applicable

    This is what I used

     

    last_week = SWITCH(TRUE(),
    AND(DATEDIFF('Date'[Week_Ending],TODAY(),DAY)<0,
    DATEDIFF('Date'[Week_Ending],Today(),DAY)>=-7),"ThisWeek",

    AND(DATEDIFF('Date'[Week_Ending],TODAY(),DAY)>=0,
    DATEDIFF('Date'[Week_Ending],Today(),DAY)<=7),"LastWeek",

    AND(DATEDIFF('Date'[Week_Ending],Today(),DAY)>=0,
    DATEDIFF('Date'[Week_Ending],TODAY(),DAY)<=13),"Las2Weeks",

    DATEDIFF('Date'[Week_Ending],Today(),DAY)>=14,"NotThisWeek")
     
    Week Ending date is date on sunday each week