Forum Discussion
Anonymous
4 years agoNot applicable
Temp table with Max Values
Hi I've a data that consists of entries similar tot he below Full Name TrainingSummary TrainingDate Elizabith Smith Not Started 1/1/2021 Smith Austin Partial 17/8/2021 Jacob Brown...
- 4 years ago
Anonymous You still need Lookup Min/Max:
Table 2 = VAR __Table = ADDCOLUMNS( SUMMARIZE('Table',[Full Name],"TrainingDate",MAX([TrainingDate])), "TrainingSummary",MAXX(FILTER('Table',[Full Name]=EARLIER([Full Name]) && [TrainingDate]=EARLIER([TrainingDate])),[TrainingSummary]) ) RETURN __Table
Greg_Deckler
4 years agoCommunity Champion
Anonymous You still need Lookup Min/Max:
Table 2 =
VAR __Table =
ADDCOLUMNS(
SUMMARIZE('Table',[Full Name],"TrainingDate",MAX([TrainingDate])),
"TrainingSummary",MAXX(FILTER('Table',[Full Name]=EARLIER([Full Name]) && [TrainingDate]=EARLIER([TrainingDate])),[TrainingSummary])
)
RETURN
__TableAnonymous
4 years agoNot applicable
Greg_Deckler works like a Charm 🙂