Forum Discussion
Anonymous
3 years agoNot applicable
Counting Total excluding Missing Values
Good Afternoon I need some help with a measure please. In my data i have the below: EventCode, Month, Person Count 1, 1 , 1, 2, ...
- 3 years ago
Try
Num rows = COUNTROWS ( FILTER ( 'Table', 'Table'[Person Count] > 1 ) )
johnt75
3 years agoSuper User
Try
Num rows =
COUNTROWS ( FILTER ( 'Table', 'Table'[Person Count] > 1 ) )