Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
9 years ago
Solved

DATEDIFF between duplicate IDs

Hi all,   Wondering if anyone could help me work out how to approach the following challenge:   I have a table with millions of IDs in one columns, and dates of when they were sold in another.  ...
  • Anonymous's avatar
    Anonymous
    9 years ago

    So... we take the max(date sold) minus min(date sold) giving us the total # of days between sales, then divide by the number of sales (minus 1)... and that gives the average number of days between sales?   I think?

     

    Jan 1, 2017

    Jan 9, 2017

      ... 8 days between sales  -- Jan 9 - Jan 8 / (2 sales - 1) = 8

     

    Jan 1, 2017

     Jan 2, 2017

    Jan 9, 2017

      ... still 8 days, but now with another sale, we get average of 4 days.  The exact date off the "middle" sale doesn't matter, at least in my head!?    Currently Jan2-Jan1=1, Jan9-Jan2=7,  (7+1)/2=4 ?

    Avg Days Between Sale := DIVIDE(MAX(MyTable[SaleDate]) - MIN(MyTable[SaleDate]), COUNTROWS(MyTable) - 1)

     

    Maybe?! :)

  • Anonymous's avatar
    Anonymous
    9 years ago

    Hi again,

     

    Qucik update, it turns out that my technical indications were incorrect and the sales are not going to coming through this way.

     

    However, intrigued by the suggestion I've had a quick look through but can't seem to get it to work:

     

    IDDate SoldTime taken to sell   
    101/01/20170   
    103/01/20172   
    305/01/20170 Average Days to Sell
    310/01/20175 3,5 
          
     Jan10-Jan1 / 2 sales = 5?   
     Jan10-Jan1 / (2-1) sales = 10?   

     

    Many thanks for your help anyway.

     

    Matt