Forum Discussion
Anonymous
6 years agoNot applicable
Return Earliest Date
Dax formula but returning same date for all ID, I need help applying filter on the ID Attempt = IF('Table'[Attendance]="Pending",CONVERT(MIN([StartDate]),STRING)," ") Attendance StartDa...
- Anonymous6 years ago
I managed to fix this :
Attempt = IF([Attendance]="Pending",CALCULATE(FORMAT(MIN(Table[StartDate]),"DD/MM/YYYY"), ALLEXCEPT('Table',Table[contactid]))," ")Thanks
amitchandak
Super User
6 years agoAnonymous , Not sure why you want make that string and what date you want
Try new column like
Attempt = IF('Table'[Attendance]="Pending",[StartDate]+""," ")
Or
min date for ID = minx(filter(Table,[contactid]=earlier([contactid])),[StartDate]) + ""
- Anonymous6 years agoNot applicable
I managed to fix this :
Attempt = IF([Attendance]="Pending",CALCULATE(FORMAT(MIN(Table[StartDate]),"DD/MM/YYYY"), ALLEXCEPT('Table',Table[contactid]))," ")Thanks- Anonymous6 years agoNot applicable
Hi Anonymous ,
Is there anything else need help about this thread? If no, could you please mark it as Answered? Thank you.
Best Regards
Rena