March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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?
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
Solved! Go to Solution.
you can try this
Column 2 = CALCULATE(min('Table'[Received Date]),FILTER('Table','Table'[part]='Table (2)'[part]&&'Table'[Received Date]>'Table (2)'[Column]))
Proud to be a Super User!
you can try this
Column 2 = CALCULATE(min('Table'[Received Date]),FILTER('Table','Table'[part]='Table (2)'[part]&&'Table'[Received Date]>'Table (2)'[Column]))
Proud to be a Super User!
works perfectly, thanks
you are welcome
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |