runatyr
runatyr

Reputation: 57

New to Power BI looking for a count of results after applying slicers

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.

enter image description here

Upvotes: 0

Views: 187

Answers (1)

Alexis Olson
Alexis Olson

Reputation: 40204

You just need to write a measure and drop it in a visual like a card.

CountResults = COUNTROWS( TableName )

Upvotes: 2

Related Questions