Forum Discussion

The_Clam's avatar
The_Clam
Helper I
5 years ago
Solved

Value Repeating within Last 15 Days

Hi.  I have data with 3 columns...ID, AlarmName, Date Created.  I need to count how many times an AlarmName repeats within the last 15 days.  Please help.  Thanks!

 

Sample data:

ID               Date CreatedAlarmName  
289104476/19/20211024OIAP01
287329646/15/20211024OIAP01
287291746/15/20211024OIAP01
280883665/31/20211024OIAP01
278954795/26/20211024OIAP01
278645405/25/20211024OIAP01
277721645/23/20211024OIAP01
277209295/21/20211024OIAP01
273886305/12/20211024OIAP01
272283045/7/20211024OIAP01
269665124/28/20211024OIAP01
269207844/27/20211024OIAP01
267832284/23/20211024OIAP01

 

Expected Result: 
AlarmNameCount
1024OIAP01 3
  • The_Clam , Please try this with help from date table

    Rolling 14 = CALCULATE(count(Table[ID]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date]),-14,DAY))

     

    This will be for selected date or each date in trend 

2 Replies

  • The_Clam , Please try this with help from date table

    Rolling 14 = CALCULATE(count(Table[ID]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date]),-14,DAY))

     

    This will be for selected date or each date in trend