Forum Discussion
fmatioli06
8 years agoFrequent Visitor
Find earliest Date from column with possible repeated row value
Hi All, I would really appreciate any DAX help I can get with this. I am trying to create a calculated column that finds the first date when the "Goal Met" column shows "completed" or in other word...
- 8 years ago
It works when I add dummy ID to your sample data :smileysurprised:
Please see the pic below
Anonymous
8 years agoNot applicable
Try the following Dax and see if it get the results you want
Column = IF(Table[Goal Met]="Completed",CALCULATE(FIRSTNONBLANK(Table[Date],1),ALLEXCEPT(Table,Table[Goal Met])))