davide moltrasio 2 Posted February 20, 2019 Share Posted February 20, 2019 Hi, i want to filter my data with the max datetime for each date and foreach value of column a This is my start table Column-A Column-B COD1 14/02/2019 15:10:03 COD1 14/02/2019 15:21:25 COD1 14/02/2019 18:05:20 COD1 15/02/2019 15:10:03 COD1 15/02/2019 15:21:25 COD1 15/02/2019 18:05:20 COD2 14/02/2019 15:10:03 COD2 14/02/2019 15:21:25 COD2 14/02/2019 18:05:20 COD2 15/02/2019 15:10:03 COD2 15/02/2019 15:21:25 COD2 15/02/2019 18:05:20 [...] [...] This is what I want: Column-A Column-B COD1 14/02/2019 18:05:20 COD1 15/02/2019 18:05:20 COD2 14/02/2019 18:05:20 COD2 15/02/2019 18:05:20 [...] [...] How can I write a custom expression Thanks Link to comment Share on other sites More sharing options...
Kirsten Smith (she/her) Posted February 20, 2019 Share Posted February 20, 2019 I kind of did this the long way, but this should give you a starting point for your data. First, I created a Date column that is just the Date part of your DateTime column called [singleDate]. Then I used this expression to create a new column in the data set: case when [Column-B]=Max([Column-B]) OVER ([singledate]) then "Yes" else "No" end This creates a column of "Yes" and "No" values, then you can just filter out the "No" values. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now