Analytical Database

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

Guest

I have been asked to design a database for storing the analytical results for
groundwater sampling. One of the fileds needs to show a non-detect below a
certain threshold. So basically the information in the record should look
like this: "< 0.05" but there may be other records that contain a whole
number value above the detection threshold. Is there a way to make a column
accept both types of data. So that if I enter "ND" (for non-detectable) it
will display "< 0.05" but if I enter a number above that threshold it will
display?

Does that make any sense?

Thanks in advance.

Larry
 
Store zero for the non-detect.
In your query to extract data for reporting or display use this for the
field --
YourLabel : Iif([YourField] < 0.05, "ND", [YourField])

This way you can have your cake and eat it too.
 

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