Thank you.
This is not a typical doctors surgery database. It is a bit different. I will try to explain what is happening then i will post another screenshot.
When a child is born, sample is taken then sent off to laboratory. Then results are received and it is determined whether another test is required, if yes then test 2 test 3 test 4 and final one with outcome. It also specifies reasons why the re-tests are needed. So when a new record is created, in a form i want to be able to fill out mothers and child details and details of hospital they came from. Hence personal and clinical details. So we have a hospital lookup wizard with a table with list of hospitals, same i will have medical personell table, just haven't had time to deal with this yet. Separate tables that contain reasons for retests and outcoems table. So they can be later modified via forms and enforced all over the place. In a screenshot i think most things are ok. Except for Baby ID, i have it in every table and they are connecte so that system sees that this is a single record for a particular patient/child. I am not even starting to create forms or queries until i have relationsips in tables.
See the screenshot attached.
This i am doing to make my life easier at work, i have to do it because government is sure as hell not paying anyone to do it ...

Now i wish i was a pro programmer!

Maybe i need a video for stupid people explaining what is what!
first, You shouldn't think that what you have is not standard. I expect that it is perfectly standard. It's just a matter of deciding what details you need.
You probably will find that whatever you do here would work for any standard medical practice, and that any standard medical system would give you what you want. It ought to, certainly. That's really what you should aim for. You may find that your special requirements give you some specific enhancements that aren't in a standard system. That's all, though, I think.
patienttable - the baby -
patientid name, dob, birthweight,
hospitalid(hospital born at).
anything you need. As you are dealing with babies, personally I would include the parent name in this table. In a general medical system, you might have a separate patient record for the mother, and want to link to that record.
hospitalstable.
hospitalid and details of hospital. record this id in the patient table.
doctorstable,
doctorid and doctor name
patientconsultationtable.
consultationid,
patientid (baby id),
hospitalid,
doctorid, date, notes (the consultation might not take place at the birth hospital - it's details like this you have to consider)
testable
testid, testdetail (eg jaundice test)
patienttests
consultationid,
testid, date, details etc
or maybe
patienttests
patientid,
testid, date, details etc
this depends on your data analysis - are the patient tests to be linked to the consultation, or to the patient. It depends on how you want to refer to them within your system.
you will have multiple patienttests per patient. This is perfectly normal.
what you 100% do not want to do is have specific tables for test1, test2, test3, etc, You might want a single lookup table for test outcomes, "OK, Further Tests Needed, Problem", again with a numeric key. You do not want multiple tables for outcomes. Ditto, for "reasons"
So the art here is for you to identify every little thing you need to record in your system, and then decide on the appropriate table structure. Not the value of the thing. Not a "jaundice test", and a "kidney function test". Just a "test". All specific tests are just examples of general test. There is a continual refinement going on, though. As you start to develop you will most likely decide that you original design wasn't quite right. It is better to try and fix the design than persevere with the bad design. You might need extra data in the patient table. You might decide that something in the consultation table needs to be a different table. The idea is to normalise the data, so that the same data is never repeated in 2 different tables
The items in red are the id field of the relevant table. I would add an autonumber field to each table for this purpose.
The items in blue are the autonumbers stored in a table that refer to items in a linked table - foreign keys, in some cases called lookup fields/tables.
Finally, the design process is critical, and not to be taken lightly. A good design will lead to harmonious and rapid development. Your thoughts of what you want to see on forms should help you identify the data you are modelling. But the form layout you envisage is not critical or even important of itself. The user interface is important, but it's just a presentation detail. The user interface and the forms are just mechanisms to get the data into the tables, and back out again.
Hope this helps