Forum Discussion
Anonymous
4 years agoNot applicable
Check several rows with same ID
Hi folks, I am quite new to PowerBI and currently wokring on the following topic: I do have messages and message_threads, both are in one table. Messages can be either OUTBOUND (sent by compa...
daXtreme
Solution Sage
4 years ago// Let the table be T.
[# Active Threads] =
CALCULATE(
DISTINCTCOUNT( T[thread-id] ),
DISTINCT( T[thread-id] ),
T[message-type] = "inbound",
REMOVEFILTERS( T )
)