Looking for template - lab results

S

Skylara

Does anyone know of a template that would be useful in recording laboratory
test results? Thank you
 
P

pietlinden

Does anyone know of a template that would be useful in recording laboratory
test results? Thank you

Hard to answer that without knowing exactly what you're doing. Can a
given subject receive more than one of the same test on a given day?

Patient/Subject---(1,M)---TestResult---(M,?)---Test

TestResult(
PatientID PK1,
TestID PK2,
TestDate,
Result)

is about the simplest structure you can have. Then you can summarize
across time and get averages etc.
 
Top