...the first grid will show custmomers with transactions date = date() and amount > 2000
thisform.grid1.RecordSource = ''
nSecsSta = SECONDS()
* 1st Query
SELECT rem_first, rem_last;
FROM INVOICE;
WHERE date = DATE();
ORDER BY rem_last, rem_first;
GROUP BY rem_last, rem_first;
INTO CURSOR...