Forum Discussion
Anonymous
3 years agoNot applicable
Help: what is the Dax code To use????
Hi Newbie here in Dax formula, what formula should i use if this is the outcome that i want to see ( expected Result, i want to get the oldest date). Thank you so much for the help Profil...
sevenhills
3 years agoSuper User
Exprected Column Result =
IF ( 'Table'[ProfileId] = MIN('Table'[ProfileId])
&& 'Table'[Final Submission Date] = CALCULATE(Min('Table'[Final Submission Date]), Filter('Table', 'Table'[ProfileId] = MIN('Table'[ProfileId])
&& 'Table'[Final Submission Date] <= EARLIEST('Table'[Final Submission Date])))
, 'Table'[DistinctProfileDate], blank()
)
Column DAX code