Forum Discussion
Dedupe ID - Keep most recent record
- 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
(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
Neither change succeeded.
Assuming I followed your instruction properly.
Column = SUMMARIZECOLUMNS(analytics_clickstream_201802[visid_comb]);"LastDate",MAX(analytics_clickstream_201802[date_time]))
The syntax for ';' is incorrect. (DAX(SUMMARIZECOLUMNS(analytics_clickstream_201802[visid_comb]);"LastDate",MAX(analytics_clickstream_201802[date_time])))).
- Vvelarde8 years ago
Community Champion
Anonymous
Ok.
Replace ALL ; with , Dont Mixed.
And Use a Modeling - NewTable Not a New Column.
Regards
Victor
- Anonymous8 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.
- Vvelarde8 years ago
Community Champion
Anonymous
This will create you a new Table with the data.
Regards
Victor
- Anonymous8 years agoNot applicable
Thank you.