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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
emrei
Helper I
Helper I

Excel Second minif in Powerbi calculatd column

Hi everyone, I have the following two tables. In the analysis table I get the earliest and second earliest part received date for each part with date information coming from the data table.

For the earliest received date in excel i use: =MINIFS(C:C,B:B,F4)

And for the second earliest received date in excel i use:  =MINIFS(C:C,B:B,F4,C:C,">"&MINIFS(C:C,B:B,F4))

 

I am trying to replicate this analysis in powerbi for the analysis table as a calculated column. I was able to get the earliest date with the folowing funciton = CALCULATE(min('data table'[received date]),ALLEXCEPT('analysis table'[part])). I am having trouble calculating the second earliest received date since filter won't work for two tables. Does anyone have any ideas?

 

emrei_0-1695771917266.png

TLDR: How to convert =MINIFS(C:C,B:B,F4,C:C,">"&MINIFS(C:C,B:B,F4)) excel formula to powerbi calculated column

 

 

Thank you!

Best,

Emre

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@emrei 

you can try this

Column 2 = CALCULATE(min('Table'[Received Date]),FILTER('Table','Table'[part]='Table (2)'[part]&&'Table'[Received Date]>'Table (2)'[Column]))

11.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@emrei 

you can try this

Column 2 = CALCULATE(min('Table'[Received Date]),FILTER('Table','Table'[part]='Table (2)'[part]&&'Table'[Received Date]>'Table (2)'[Column]))

11.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




works perfectly, thanks

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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.

Top Solution Authors