This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hi all,
I am using direct query and have this problem:
I want to count the useres which are not active since three months. Because of that I've created a measure which claculates the diffrence between today and the last active day for the users, so 1 for not active , 0 for active .
Is inactive user since 90 days = IF( DATEDIFF(MAX('table'[TimestampUtc]);NOW();DAY)>90;1;0)
It works well !
But when I need to create other measue which calculates the the count like this, I get this error:
count of inactive users = CALCULATE(DISTINCTCOUNT('table'[UserId]);[Is inaktiver Nutzer seit 90 Tagen]=1)
I have read that, this formula is not supported in direct query, so I went another way with a table like this but it doesn't count the number of 1 ( it seems it shows the average):
What should I do !!
Thanks for Help 🙂
Taher
Solved! Go to Solution.
Give this a shot
count of inactive users =
CALCULATE (
DISTINCTCOUNT ( 'table'[UserId] ),
FILTER (
ALLSELECTED ( 'table'[UserId] ),
[Is inaktiver Nutzer seit 90 Tagen] = 1
)
)
Give this a shot
count of inactive users =
CALCULATE (
DISTINCTCOUNT ( 'table'[UserId] ),
FILTER (
ALLSELECTED ( 'table'[UserId] ),
[Is inaktiver Nutzer seit 90 Tagen] = 1
)
)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 21 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 55 | |
| 54 | |
| 47 | |
| 26 | |
| 24 |