I have a large amount of test data consisting of a date, test name, result, and reference range. This data is laid out in a single column. So I have a Date and under that a Test Name, and under that a Result, and under that a Reference Range and then it repeats. I want to move this data into a database so I need to convert the single column to 4 columns. Any idea how to do that?
Here is what I have done so far: Below is a sample of the data. Since this is a lab work there may be a dozen tests relating to one date and time.
Date/Time: 03/01/2016 @ 0900
Test Name: GLUCOSE
Result: 336 High
Reference Range: (70-110)
Since Access shuffles data around, I began by using Excell to add a column of ID# to maintain the original order of Data. I added a second order ID to keep the date, test, result, and range related. Then a third ID to order the multiple tests under a given date/time.
My real problem is maintaining relationships in the data. I need the logic on how to do that.