cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Twe-Maker
Frequent Visitor

DAX to find all inactive id in 3 month

DAX to find all inactive ItemID over -3 month. ItemID which havent move OUT in -3 month (ill make into field parameter 6/12/24/36 month).

IDItemIDStatusDate
8101OUT20/07/22
7102IN15/07/22
6106OUT15/07/22
5105OUTnull
4106IN05/05/22
3101OUT28/03/22
2103OUT24/02/22
1102IN15/02/22

ItemID#Days
102155
103146
105null

Something I try.....
inactive_device_6m =
VAR _CurrentDate = MAX('DateTable'[Date])
VAR _6MonthsAgo = EOMONTH(_CurrentDate, -6)
VAR _ActiveItem6Month =
???
VAR _InactiveItemOver6Month =
???
Return
?? #DaysITEMHaventOut

maybe #day(inactive_item)

#days =
VAR
NumberOfDays =
MAX('DateTable'[Date]) -
'table'[Date]
RETURN
IF(
ISBLANK('table'[date]);
BLANK();
NumberOfDays
)

Im new to Power bi and Thank You.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Twe-Maker , Create measures like

 

Rolling 3 = CALCULATE(countrows(filter(Table, Table[Status]="OUT")), DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-3,MONTH))

 

Not out = countx(values(table[item ID]), if (Isblank([Rolling 3]), [item id], blank()  ) )

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Twe-Maker , Create measures like

 

Rolling 3 = CALCULATE(countrows(filter(Table, Table[Status]="OUT")), DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-3,MONTH))

 

Not out = countx(values(table[item ID]), if (Isblank([Rolling 3]), [item id], blank()  ) )

 

Thank you

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