Skip to main content

I have a large dataset with videos that have an upload date, and the the days following for views. Each video has a different upload date. Is there a formula i can use to get the first three days of views. Please let me know.

2 answers
  1. Apr 23, 2019, 7:33 PM

    Hi Anna

    Try this calculation:

    Latest 3 Days:

    { FIXED [Video ID]: SUM(IF DATEDIFF('day', {MAX([Upload Date])}, [View Date])<=2 THEN

    1 ELSE 0 END)}

     

    Add Latest 3 Days to filter and select Min value 1.

     

    A sample TWBX will be very helpful to answer your question more efficiently.

     

    Thanks,

    Avinash.

0/9000