The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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!