Pop_Access
Member
- Local time
- Yesterday, 23:32
- Joined
- Aug 19, 2019
- Messages
- 66
I have a table (tbl1) with the following columns:-
With a query or VBA code, I want to reach the records with the highest value in col1 then the highest value in col2 as follows:
I want to get those records and all of the columns in the records.
Thank you.
col1 | col2 | col3 |
7-Aug-21 | 1 | Pete |
7-Aug-21 | 2 | John |
15-Sep-21 | 1 | Don |
15-Sep-21 | 1 | Elsa |
11-Oct-21 | 2 | Rick |
11-Oct-21 | 1 | Betty |
11-Oct-21 | 2 | Vera |
11-Oct-21 | 1 | Ronald |
With a query or VBA code, I want to reach the records with the highest value in col1 then the highest value in col2 as follows:
col1 | col2 | col3 |
11-Oct-21 | 2 | Rick |
11-Oct-21 | 2 | Vera |
I want to get those records and all of the columns in the records.
Thank you.