So I have this case where I need to use top hits on transformation
I want to show data based on
I have this data
email col2 col3 col4 col5 Time
a.com a a a a 11:00
a.com a a a a 11:01
a.com a b a a 11:02
I want to remove the duplicate email, and only show it based on the latest time. I'm using transform and aggregate it based on max time. and for the group by I choose every field I needed. It returns data such as :
a.com a a a a 11:01
a.com a b a a 11:02
I only want it to show data a.com a b a a 11:02
How can I make the transform based on groupby email only instead every field?