I have a form that contains the fields: Store, Date, UPC, Qty. How do create a list that includes one instance of each unique combination of the 'Store' and 'Date' fields. For example, if these were my entries in my database:
Store, Date, UPC, Qty
1, 2023-01-05, 12345, 5
1, 2023-01-05, 8675309, 12
1, 2023-01-05, 123254, 3
2, 2023-01-05, 12423, 6
2, 2023-02-01, 42323, 13
Then I would like a listing showing just:
1, 2023-01-05
2, 2023-01-05
2, 2023-02-01
Please login or Register to submit your answer