Forum Discussion
mariogonzra
2 years agoNew Member
Counting rows taking into account different columns
Hi, everyone: So I'm working with a table that looks basically like this: ReportName PageName UserID Date A A 1 4/7 A B 1 4/7 A C 1 4/7 A A 1 5/7 A B 1 5/7 ...
- 2 years ago
Try this measure. Since ReportName in the visual provides filter context, it's optional to include ReportName in the SUMMARIZE expression.
Count Measure = COUNTROWS ( SUMMARIZE ( 'Table', 'Table'[UserID], 'Table'[Date] ) )
DataInsights
Super User
2 years ago
Try this measure. Since ReportName in the visual provides filter context, it's optional to include ReportName in the SUMMARIZE expression.
Count Measure =
COUNTROWS ( SUMMARIZE ( 'Table', 'Table'[UserID], 'Table'[Date] ) )