Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

rowcount counts values that were removed from table using date and time filter

I have a table that unfiltered has about 6mill records and I need a row counter that informs users how many rows they have. I have created a variable: 

 

countrows = COUNTROWS(FactEvent)

 

Screenshot 2021-01-14 151925.png It calculated correct value if I use only slicers on the page, but if I use filter and remove rows based on the dates, it doesn't adjust the value. As you can see on the image the value in totals of the first column (17) is not the same as the value in Row Count (335)

How can I count rows in my table and have value that takes to account both: the slicers and the filter?

 
 

 

1 ACCEPTED SOLUTION
gabrielreversi
Frequent Visitor

Hello @Anonymous 

Are you applying the filter mentioned only in the table?

Try applying it to the card too or in the fied "Filters on this page"

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , All power bi visual gorup data , unless you add an index ot primary key column from you table as non summarized.

Rows are 335 summarized as 17

 

You make have take sount with all column in visual like

countrows(Summarize(Table, Table[Start Date]), Table[End Date], Table[Asset])) // add others

gabrielreversi
Frequent Visitor

Hello @Anonymous 

Are you applying the filter mentioned only in the table?

Try applying it to the card too or in the fied "Filters on this page"

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors