Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have in Power BI a table that stores user sign-ins and the network type of the connection.
Something like this:
User Network Type
A Office
A Public
B Office
C Office
D Public
I need to create a measure that counts the distinct users that has a connection to the 2 different network types so in this case only 1( the user A).
I have been trying something like this, but it's giving me as result 4, so I guess I'm not understanding the formula I'm using.
Solved! Go to Solution.
Hi @Anonymous
Measure =
COUNTROWS (
FILTER (
DISTINCT ( Table1[User] ),
CALCULATE ( DISTINCTCOUNT ( Table1[Network Type] ) ) >= 2
)
)
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Hi @Anonymous
Measure =
COUNTROWS (
FILTER (
DISTINCT ( Table1[User] ),
CALCULATE ( DISTINCTCOUNT ( Table1[Network Type] ) ) >= 2
)
)
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Thanks a lot, that's perfect!!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 18 | |
| 10 | |
| 9 | |
| 7 | |
| 7 |