Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi experts,
I have a problems that need your help.
I got 3 table:
1. Fact Table: Login Event
2. Dim Table: Total users
3. Dim Table: Date
The relationship will look like below picture
In 1 report page:
- Filter: Date (from Date table)
- Chart 1: List of user had login in the given date filter
- Now I need to build, with the same given date filter, the list of NOT- LOGIN USER.
Please give me some advises.
Thanks in advance!!
Solved! Go to Solution.
@Anonymous
You can find not login users with NOT in Values() function:
Not login users = CALCULATE(MAX('DIM total users'[user]), FILTER('DIM total users', NOT('DIM total users'[user]) in VALUES( Fact_Login event[user])))
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous
Try:
not logged in =
VAR users = VALUES(DIM total users[user])
VAR logged = VALUES(Fact_Login event[user])
RETURN
COUNTROWS(EXCEPT(users,logged))
Create the visual/table/chart with the DIM total user[user] field, and in the filters for the visual in the filter pane add this measure [not logged in ] and establish the filter value as 1
Proud to be a Super User!
Paul on Linkedin.
@Anonymous
You can find not login users with NOT in Values() function:
Not login users = CALCULATE(MAX('DIM total users'[user]), FILTER('DIM total users', NOT('DIM total users'[user]) in VALUES( Fact_Login event[user])))
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Make the join between Date and use as inactive and User dim Login Fact as active.
When you need some data from use dime with date cross filter with fact login and use relation with.
refer
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
73 | |
70 | |
69 | |
46 | |
44 |
User | Count |
---|---|
46 | |
38 | |
29 | |
28 | |
28 |