I would like to return a filtered list of products to only show the latest entry for each product in the list (meaning pick the row with the MAX date for each product).
I have setup a QUERY function using the MAX(date) in the select clause, but the problem is that it is showing all values (i.e. not showing the latest entries only).
The query I have setup is:
=QUERY('SKU list'!A:C,"select max(A),B,C where A is not null group by B,C")
A sheet with sample data and query is here
The actual result is that the query is returning old and new rows, I expect the query to only return the latest rows for each product.