Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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
date | value |
01-02-2022 | 59 |
02-02-2022 | 60 |
03-02-2022 | 45 |
04-02-2022 | 40 |
05-02-2022 | 35 |
06-02-2022 | 78 |
07-02-2022 | 90 |
Solved! Go to Solution.
Hi @Anonymous
Please try
Count =
SUMX ( VALUES ( 'Table'[Date] ), IF ( [Value] > 45, 1 ) )
Hi @Anonymous
Please try
Count =
SUMX ( VALUES ( 'Table'[Date] ), IF ( [Value] > 45, 1 ) )
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
Proud to be a Super User!
@visheshjain appriciate your time on this, it is not working as i expected. but thanks for your time.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
9 | |
8 |