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...
Greg_Deckler
3 years agoCommunity Champion
Anonymous As a column:
expected Result column =
VAR __ProfileId = [ProfileId]
VAR __MinDate = MINX(FILTER('Table', [ProfileId] = __ProfileId), [Final Submission Date])
VAR __Result = MINX(FILTER('Table', [ProfileId] = __ProfileId && [Final Submission Date] = __MinDate), [DistinctProfileDate])
RETURN
__Result