When you removed Group By, what did you change it to? It should be Expression, as should all calculated fields and domain aggregates that aren't using the query's built in Sum, Max, etc.
Also, when you use strings as criteria, as in
they need to be enclosed as strings, as in
(note single quotes ' inside the double quotes " surrounding your string criteria).
Also, when you use strings as criteria, as in
Code:
MinDate: DMin("[OrderDate]","Items Ordered","( [CustomerID]=" & CStr([CustomerID]) & " ) AND _
" & "( [SKU] = " & CStr([SKU]) & ")")
Code:
MinDate: DMin("[OrderDate]","Items Ordered","( [CustomerID]='" & CStr([CustomerID]) & "' ) AND _
" & "( [SKU] = '" & CStr([SKU]) & "')")