I'm more-so looking to be able to select a combination of options, and then manually enter numerical data that corresponds to the data I selected. For example, for one patient I may need to enter data that says "this patient received X fillers in their lip at a volume of XYZ, as well as Y fillers in their upper eyelid at a volume of ABC." I'd like the filler type and location to be able to be selected from something like a drop down menu, but the corresponding volume of each used would need to be manually entered. Hopefully that makes sense! I've included below the entire scope of the project that I'm working on in hopes that that relays a better understanding of the database that I need to create.
The goal is to set up an excel spreadsheet that can serve as a database from where I can pull information, in any combination, to perform research, evaluate procedures, etc. Many of these procedures are done at the same time (i.e. in the same surgery setting), so the database needs to be organized and complete enough to allow for easy data manipulation/pulling. This will serve as a data mine for my career. I don’t need nitty gritty details, because as long as I can identify the patients of interest, I can go into their charts at that point.
Patient Name
Patient Sex
DOB
MRN
Anesthesia-General
-Local
Microfat grafting-location and volume for each location
-locations include: Temples, upper eyelid, Lateral SOOF, Medial SOOF, Deep Malar, Superficial Malar, nasolabial fold, marionette lines, chin, lips, earlobe, jawline
Nanofat Grafting-location and volume for each location
-perioral, lower lid
Lower Blepharoplasty-Skin-muscle
-Transconjunctival
-skin only
Upper Blepharoplasty-Skin-muscle
-skin only
Canthopexy-deep
-superficial
Facelift-primary
-secondary
-Extended Deep plane
-SMAS Plication
NeckLift-primary
-secondary
-liposuction central neck
-Open Platysmaplasty
Browlift-Lateral
-Total
Rhinoplasty
Buccal Fat pad removal
Earlobe reduction
Lip lift
Peel-TCA
-Croton Oil
Fillers (need to be able to pull which filler(s) were used and for which area—multiple areas and fillers can be used in same session, and volume of each used)-Voluma
-Volbella
-Vollure
-Juvederm
-Restylane Lyft
-Restylane-L
-Restylane Silk
-Restylane Refyne
-Restylane Defyne
-Sculptra
-Radiesse
-locations: liquid rhinoplasty, neck, perioral, lip, Temples, upper eyelid, Lateral SOOF, Medial SOOF, Deep Malar, Superficial Malar, nasolabial fold, marionette lines, chin, lips, earlobe, jawline
Neuromodulators (location and units for each location:-Botox
-Dysport
-Locations: frontalis, corrugator, procerus, orbicularis oculi, DAO, mentalis, Platysma, Masseter, orbicularis oris
Hyaluronidase
-yes
-amount
-no

Originally Posted by
June7
Conventional approach would be a related dependent table that would have a record for each filler used during a surgery.
Might be able to have a single table for all data pertaining to a surgery, something like:
SurgeryDetails
SurgeryID_FK
ElementID_FK
Volume (filled in only for elements that require it)
That would require a single source table for all surgical elements:
SurgeryElements
ElementID
ElementType (Filler, Location)
ElementName (Voluma, etc, neck, etc)
With this structure, cascading comboboxes would likely be beneficial. User selects ElementType in one combobox and another combobox ElementName list is filtered by first combobox. However, be aware this does not work nicely on form in Continuous or Datasheet view when combobox displays text alias.