I am trying to solve a simple problem. We have a bunch of numeric fields (lab result values). I would like the users to be able to indicate some common scenarios about the fields:
- Data not available ("no data")
- Data not readable ("illegible")
- Unkown. etc.
I can definitely create a sidecar field that goes with each field and storing a "null" in the original field which would indicate that the numeric value should be obtained from the sidecar field. This solution still enables me to perform numeric value operations on the field, and if needed, I can look in to the sidecar field to find out why the data was missing (null).
I would like to know how you might go about solving this problem, and what are the best ways to address metadata issues like this.