Hello All, I might ask an easy question but I want the following. I want to select the top 1 highest value per SECTION and per DAY. Please see the example below: *This is the data I have right now (with thousands of rows) ID -- Location -- Section -- Date -- Time -- Type -- Value 01 -- Germany -- BB --1/1/20 -- 10:10 -- VW -- 9,0 02 -- Germany -- AA --1/1/20 -- 11:20 -- AU -- 7,0 03 -- Germany -- AA --1/1/20 -- 13:50 -- AU -- 6,0 04 -- Germany -- BB --1/1/20 -- 13:50 -- AU -- 5,7 05 -- Germany -- BB --2/1/20 -- 15:10 -- MC -- 11,3 06 -- Germany -- BB --2/1/20 -- 19:10 -- VW -- 12,0 07 -- Germany -- AA --2/1/20 -- 15:20 -- OP -- 6,7 08 -- Germany -- AA --2/1/20 -- 15:20 -- AU -- 2,0 09 -- Germany -- BB --3/1/20 -- 16:16 -- MC -- 1,5 10 -- Germany -- BB --3/1/20 -- 11:45 -- MC -- 5,8 11 -- Germany -- AA --3/1/20 -- 09:40 -- OP -- 2,7 12 -- Germany -- AA --3/1/20 -- 02:40 -- VW -- 2,0 *This is the data I want: ID -- Location -- Section -- Date -- Time -- Type -- Value 01 -- Germany -- BB --1/1/20 -- 10:10 -- VW -- 9,0 02 -- Germany -- AA --1/1/20 -- 11:20 -- AU -- 7,0 06 -- Germany -- BB --2/1/20 -- 19:10 -- VW -- 12,0 07 -- Germany -- AA --2/1/20 -- 15:20 -- OP -- 6,7 10 -- Germany -- BB --3/1/20 -- 11:45 -- MC -- 5,8 11 -- Germany -- AA --3/1/20 -- 09:40 -- OP -- 2,7 I appreciate your help all 🙂 Thank you in advance!
... View more