Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
StrikerZero
Frequent Visitor

Quantity of occurrences in a time interval

I am trying to calculate the number of occurrences of the same event and product in the last 7 days. Below is a table to illustrate:

 

IDPRODUCTEVENTDATEOCCURRENCES IN LAST 7 DAYS
1A120/10/20202 (ID 1 and 3)
2A217/10/2020
3A114/10/20202 (ID 3 and 4)
4A111/10/20201
5B118/10/20201
6B316/10/20202 (ID 6 and 7)
7B315/10/20201
8C318/10/20201

 

I've tried several measures, but I'm not having success. can anybody help me?

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

@StrikerZero  this code might be what you want

OCCURRENCES IN LAST 7 DAYS:=CALCULATE(COUNT(EventsTable[EVENT]),DATESINPERIOD(EventsTable[DATE],MAX(EventsTable[DATE]),-7,DAY),ALLEXCEPT(EventsTable,EventsTable[PRODUCT],EventsTable[EVENT]))

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@StrikerZero  you can try this formula .

test =
CALCULATE(COUNTROWS(data_Tables),DATEADD(data_Tables[Date],-7,DAY))
 
can you share a sample pbix file
wdx223_Daniel
Super User
Super User

@StrikerZero  this code might be what you want

OCCURRENCES IN LAST 7 DAYS:=CALCULATE(COUNT(EventsTable[EVENT]),DATESINPERIOD(EventsTable[DATE],MAX(EventsTable[DATE]),-7,DAY),ALLEXCEPT(EventsTable,EventsTable[PRODUCT],EventsTable[EVENT]))

 

The @wdx223_Daniel solution is perfect.
Sorry for the delay in responding, I had to make an emergency trip.
Before marking the answer to the end of the topic, could you show me how to drill through or filter these items from the occurrence? For example, if it is shown that an event had 3 occurrences, what were those occurrences?

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.