R
Randy
Access 2000. I need a query to return results even if some of the fields are
null (Blank) Some fields are Currency, some are dates, some are numbers
etc. I have tried in the criteria: Is Null Or Not Is Null, but have no
results if lets say the fee is 0.00. Any ideas? Oh here is my sql view if
it help...Thanks..Randy
SELECT DISTINCTROW Account.BatchDate, Sum(Account.Debit) AS SumOfDebit,
District.Dname, Count(Account.Cert_ID) AS CountOfCert_ID,
Account.District_ID, Accountsubform.FeeTypeCode, Accountsubform.Fee
FROM (Account INNER JOIN District ON Account.District_ID = District.Dist_ID)
INNER JOIN Accountsubform ON (Account.District_ID =
Accountsubform.District_ID) AND (Account.AccountID =
Accountsubform.AccountID)
GROUP BY Account.BatchDate, District.Dname, Account.District_ID,
Accountsubform.FeeTypeCode, Accountsubform.Fee;
null (Blank) Some fields are Currency, some are dates, some are numbers
etc. I have tried in the criteria: Is Null Or Not Is Null, but have no
results if lets say the fee is 0.00. Any ideas? Oh here is my sql view if
it help...Thanks..Randy
SELECT DISTINCTROW Account.BatchDate, Sum(Account.Debit) AS SumOfDebit,
District.Dname, Count(Account.Cert_ID) AS CountOfCert_ID,
Account.District_ID, Accountsubform.FeeTypeCode, Accountsubform.Fee
FROM (Account INNER JOIN District ON Account.District_ID = District.Dist_ID)
INNER JOIN Accountsubform ON (Account.District_ID =
Accountsubform.District_ID) AND (Account.AccountID =
Accountsubform.AccountID)
GROUP BY Account.BatchDate, District.Dname, Account.District_ID,
Accountsubform.FeeTypeCode, Accountsubform.Fee;