Hi,
I have a table that has a numeric field 'TransferNo'
Im trying to write a query that calculates the total number of records that have a TransferNo that is GREATER than the average of all the TransferNo in that table.
My expression is:
SELECT Count(*) AS Result
FROM Table1
WHERE (
([Table1.TransferNo])>(AVG[Table1.TransferNo])
);
I keep getting syntax errors. Anyone know what the problem is?
Thanks,
Zoe