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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
joshua1990
Post Prodigy
Post Prodigy

COUNTROWS with ALL and FILTER

Hello everybody!

I have a table with the following structure linked to my data model:

ItemDateValue
A01.03.2020+550
A02.03.2020-600

 

The Date Column is an active connection to the calendar table.

 

Then I have a Pivot table like this:

WeekValue
2020-01+5000
2020-01-50

This table shows me the sum for each week.

Now I want a second column in this pivot that shows me the total sum regardless of the week, but just for values above 500.

The following measure is not working:

=CALCULATE(COUNTROWS(tblOne);FILTER(tblOne;tblOne[Value]>500);ALL(tblOne))

=CALCULATE(COUNTROWS(tblOne);ALL(tblOne);FILTER(tblOne;tblOne[Value]>500))

 

 

How would you solve that?

 

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

Perhaps:

Measure =
  SUMX(FILTER(ALL('Table'),[Value]>500),[Value])

Although I can't fathom why you were using COUNTROWS so if you actually want the count, use COUNTX instead of SUMX.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Or... you could try this as well:

 

 

[GT500 Total] =
CALCULATE(
	SUM( Table[Value] ),
	Table[Value] > 500,
	ALL( CalendarTable )
)

 

 

This one will respect all filters in all dimensions but the ones on CalendarTable. Maybe this is what you wanted?

 

Best

D

Greg_Deckler
Community Champion
Community Champion

Perhaps:

Measure =
  SUMX(FILTER(ALL('Table'),[Value]>500),[Value])

Although I can't fathom why you were using COUNTROWS so if you actually want the count, use COUNTX instead of SUMX.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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