Forum Discussion
Anonymous
8 years agoNot applicable
Dedupe ID - Keep most recent record
I have a list of Visitor IDs to a website for a specific timespan. For purposes of summarizing the data, I would like to dedeupe the IDs in the list, keep only the timestamp of the most recent visit...
- 8 years ago
Anonymous
(DAX(SUMMARIZECOLUMNS(analytics_clickstream_201802[visid_comb);"LastDate":MAX(analytics_clickstream_201802[date_time]))
)).
Replace : with ;
If you have problems with ; replace it with , (This is for regional settings)
Regards
Victor
Anonymous
8 years agoNot applicable
So I think what you're suggesting:
1. Modeling>New Table
2. Add Dax Statement:
Table = SUMMARIZECOLUMNS(analytics_clickstream_201802[visid_comb]),"LastDate",MAX(analytics_clickstream_201802[date_time]))
3. Then what?
Thanks.
Vvelarde
Community Champion
8 years agoAnonymous
This will create you a new Table with the data.
Regards
Victor
- Anonymous8 years agoNot applicable
Thank you.