Reputation: 57
I have a data set comprised of 4 columns
DateTime(UTC), time(ms), user IP, user ID
I have created slicers for all 4 columns
My goal is to find a way to show a count of how many instances (rows) of data match the criteria based upon the values present in the slicers.
I'd like to just create a box that shows the value for this
I will include a sample of the data. I looked through the previous cases but was having difficulty trying to turn any related search results into my particular problem.
Please advise and thank you.
Upvotes: 0
Views: 187
Reputation: 40204
You just need to write a measure and drop it in a visual like a card.
CountResults = COUNTROWS( TableName )
Upvotes: 2