#Name?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I am trying to write a query that will provide me with any results that are
outside the range of 6.0 - 28.0. The result field is 'Text' and contain value
like none, clear etc.. I wrote a query but when I run it, it gives me #Name?
in all columns.

SELECT A, B, C, D
FROM XYZ
WHERE A Like "CORT*" AND VAL(ReSULT) not between 6 and 28;
Thanks
 
Hi,


have you tried


... AND NOT( VAL(result) BETWEEN 6 AND 26)



Hoping it may help,
Vanderghast, Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top