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
Anonymous
4 years agoNot applicable
Thanks Greg_Deckler for your reply. Maybe I used the wrong word. I don't want to create temp table but calculated table that contains information the way I described so that I can report against it.
I went to the link you shared but I thought maybe when I mentioned temp table I confuses the question
Greg_Deckler
Community Champion
4 years agoAnonymous 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- Anonymous4 years agoNot applicable
Greg_Deckler works like a Charm 🙂