I have a query that looks like this:
SELECT qryPhysicals.NA ME, qryPhysicals.UP C, qryPhysicals.SS N, qryPhysicals.Ph ysDate, qryPhysicals.Ye arMo, qryPhysicals.Ti meElapsed
FROM qryPhysicals
order by qryPhysicals.Ti meElapsed desc
This works fine.
However, if I add a where clause,
SELECT qryPhysicals.NA ME, qryPhysicals.UP C, qryPhysicals.SS N, qryPhysicals.Ph ysDate, qryPhysicals.Ye arMo, qryPhysicals.Ti meElapsed
FROM qryPhysicals
Where qryPhysicals.ti meelapsed is not null (or any other value)
order by timeelapsed desc
I get "invalid use of null"
I looked at all of the records, all of them contain values.
Any pointers are greatly appreciated.
Thanks
JM420A
SELECT qryPhysicals.NA ME, qryPhysicals.UP C, qryPhysicals.SS N, qryPhysicals.Ph ysDate, qryPhysicals.Ye arMo, qryPhysicals.Ti meElapsed
FROM qryPhysicals
order by qryPhysicals.Ti meElapsed desc
This works fine.
However, if I add a where clause,
SELECT qryPhysicals.NA ME, qryPhysicals.UP C, qryPhysicals.SS N, qryPhysicals.Ph ysDate, qryPhysicals.Ye arMo, qryPhysicals.Ti meElapsed
FROM qryPhysicals
Where qryPhysicals.ti meelapsed is not null (or any other value)
order by timeelapsed desc
I get "invalid use of null"
I looked at all of the records, all of them contain values.
Any pointers are greatly appreciated.
Thanks
JM420A
Comment