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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. 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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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