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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Need count based on measure value

HI,

 

i need count of value per date but the value is coming from a measure.

as you can see below we have diff dates and value for each day.

value is coming from a different dax measure.

so i want another measure where count of value >45

so finally i want to seee out put as we have 4 days where value is >45.

 

how to acheive this?

@amitchandak @Pragati11 @denxx34 @Anonymous @Anonymous @visheshjain 

datevalue
01-02-202259
02-02-202260
03-02-202245
04-02-202240
05-02-202235
06-02-202278
07-02-202290
1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Anonymous 
Please try

Count =
SUMX ( VALUES ( 'Table'[Date] ), IF ( [Value] > 45, 1 ) )

View solution in original post

4 REPLIES 4
tamerj1
Super User
Super User

Hi @Anonymous 
Please try

Count =
SUMX ( VALUES ( 'Table'[Date] ), IF ( [Value] > 45, 1 ) )
Anonymous
Not applicable

@tamerj1 thanks for your time, this solution is working for me.

visheshjain
Impactful Individual
Impactful Individual

Hi @Anonymous,

 

Try the following method,

 

CALUALTE( COUNTROWS(Date[Date]), FILTER(Date[Date], Measure>45))

 

Hope this works out for you and if it doesn't, please share a PBIX.

 

Thank you,

Vishesh Jain

Did I answer your question?
If yes, then please mark my post as a solution!

Thank you,
Vishesh Jain

Proud to be a Super User!



Anonymous
Not applicable

@visheshjain appriciate your time on this, it is not working as i expected. but thanks for your time.

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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