Forum Discussion

M_SBS_6's avatar
M_SBS_6
Helper V
2 years ago
Solved

Delivery Days

Hi, I am trying to track the number of days for a delivery status. Below is my current table. I'd like to track the number of days between each date with the first date showing as a BLANK. Thi...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi M_SBS_6 ,

     

    Greg_Deckler  provided a good solution. I have another method here. I hope it will be helpful to you.


    1. After sorting the dates in ascending order in power query, create an index column.


    2. Create a calculated column and write an expression.

    Column =
    VAR _pre = CALCULATE(MAX('Table'[Date]),FILTER(ALL('Table'),'Table'[Index] = EARLIER('Table'[Index]) - 1))
    RETURN
    DATEDIFF(_pre,'Table'[Date],DAY)


    3. If you don’t need the index column, you can click the little eye next to the column name to hide it.

     

     

    If your Current Period does not refer to this, please clarify in a follow-up reply.

     

    Best Regards,

    Clara Gong

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