Forum Discussion
amiller5
Helper II
4 years agoHow to connect Minif between two data sources
Hello - I have the following Excel formula that I need to convert into Dax. =MINIFS(T:T,P:P,B9) T - Contract date P - Account name (may have multiple instances) B9 - account name in a different s...
- 4 years ago
Hi,
To your matrix visual, drag the Account Name from the Service 4 table. Write this measure
Min date = min('Table3'[Contract effective date])
Hope this helps.
v-zhangti
Community Support
4 years agoHi, amiller5
I briefly simulated some data that I hope fits your situation.
Column =
CALCULATE (
MIN ( 'Service 3'[Contract date] ),
FILTER ( 'Service 3', [Account name] = EARLIER ( 'Service 4'[Account name] ) )
)
Service 3:
Service 4:
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.