cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
StephenK
Resolver I
Resolver I

Repeat Users within Rolling 12 Month Period

Hey guys, 

 

I need some help coming up with a calculated column. I have two tables... 

 

a calendar table (has contiguous dates): 

 

Date              Exercise

1/1/2020 
1/2/2020 
1/3/2020 
1/4/2020FY20 Exercise 1
1/5/2020 
 
3/1/2020FY20 Exercise 2
 
12/31/2020 
1/1/2021 
1/2/2021FY21 Exercise 1
 

 

and a fact table (does not have contiguous dates): 

 

Exercise                Date           PersonID

FY20 Exercise 11/4/2020    1
FY20 Exercise 23/1/2020    1
FY20 Exercise 23/1/2020    2
FY19 Exercise 23/1/2019    3
FY21 Exercise 11/2/2021    3

 

 

these are related on the Exercise column.

 

What I need to do is create a calculated column in my fact table indicating via a flag if a PersonID showed up at least twice in exercises within a rolling 12 month period. The end date of the twelve month period would be the date of the most recent exercise they participated in. The start date of the period would be the most recent exercise in which they participated that is within 12 months prior of the end date exercise.

 

so for example PersonID 1 participated in two exercises within a 12 month period. PersonID 2 only participated in one.

Person ID 3 participated in two exercises, BUT NOT in a rolling 12 month period. 

 

Output would look like:

 

Exercise                Date        PersonID  IsRepeat

FY20 Exercise 11/4/2020    1    1
FY20 Exercise 23/1/2020    1    1
FY20 Exercise 23/1/2020    2    0
FY19 Exercise 23/1/2019    3    0
FY21 Exercise 11/2/2021    3    0

 

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

try this calculated column formula

IsRepeat=VAR _id=FactTable[PersonID] VAR _tbl=FILTER(FactTable,FactTable[PersonID]=_id) VAR _max=MAXX(_tbl,FactTable[Date]) VAR _2ndMax=MAXX(FILTER(_tbl,FactTable[Date]<_max),FactTable[Date]) RETURN IF(_max<=EDATE(_2ndMax,12),1,0)

View solution in original post

1 REPLY 1
wdx223_Daniel
Super User
Super User

try this calculated column formula

IsRepeat=VAR _id=FactTable[PersonID] VAR _tbl=FILTER(FactTable,FactTable[PersonID]=_id) VAR _max=MAXX(_tbl,FactTable[Date]) VAR _2ndMax=MAXX(FILTER(_tbl,FactTable[Date]<_max),FactTable[Date]) RETURN IF(_max<=EDATE(_2ndMax,12),1,0)

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors
Top Kudoed Authors