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

Count on condition from multiple sorting condition

Hi,

 

I'm trying to create a new custom column for my table which it's gonna count the sort order from other collumns on some condition:

1. it's should be on the same date

2. it should be sorted on it's value on descending order

 

this is the image for what I want to do:

date_column      |       value_column     |          my_custom_column     |

2019/06/14        |                 8               |                         3                    |

2019/06/14        |                 9               |                         2                    |

2019/06/14        |                10              |                         1                    |

2019/06/15        |                 7               |                         2                    |

2019/06/15        |                 8               |                         1                    |

 

I've tried this DAX code :

CALCULATE(COUNT('my_table'[value_column]),FILTER('my_table',AND([date_column]=MAX([date_column]),[value_column]<MAX([value_column]))))

but it's not returning the result that I want.

 

I wondering if there's someone who has a better idea for this.

 

regards,

1 ACCEPTED SOLUTION
Anonymous
Not applicable

hi @Ashish_Mathur ,

 

thank you very much for your help.

it's close from what I'm looking for, but the problem is, with your code rows with date earlier than 2019/06/14 would also be counted.

I need rows to be counted only on the same day

 

キャプチャ.png

View solution in original post

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

This calculated column formula works

=CALCULATE(COUNTROWS(Data),FILTER(Data,Data[date_column]=EARLIER(Data[date_column])&&Data[value_column]>=EARLIER(Data[value_column])))

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

hi @Ashish_Mathur ,

 

thank you very much for your help.

it's close from what I'm looking for, but the problem is, with your code rows with date earlier than 2019/06/14 would also be counted.

I need rows to be counted only on the same day

 

キャプチャ.png

Hi,

Your formula is not the same as mine.  You are missing the EARLIER() before the &&


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @Ashish_Mathur 

 

sorry for that.

it works perfectly now!

thank you very much, really appriciate it!

 

regards,

You are welcome.  If my reply helped, please mark it as Answer.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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