I can get the records I need in osql using this code:
SELECT *, SalesStock.PLU AS Expr1, Stock.FamilyName AS Expr2
FROM SalesStock INNER JOIN
Stock ON SalesStock.InvCode = Stock.InvCode
WHERE (SalesStock.PLU = 18065) AND (Stock.FamilyName = N'Trackedfood')
I've tried messing around in the 'Report > Select Expert' using different variations of:{Stock.FamilyName} = "Trackedfood" and
{TimeSalesPLU.DateHour} >= {?StartingDate} and
{TimeSalesPLU.DateHour} <= {?EndingDate}
Still no luck...