- Local time
- Today, 02:51
- Joined
- Oct 29, 2018
- Messages
- 22,531
Okay, see if you can implement that into your database, and let us know if you get stuck. Good luck!Yes that looks interesting certainly a more pleasurable way to enter data
Okay, see if you can implement that into your database, and let us know if you get stuck. Good luck!Yes that looks interesting certainly a more pleasurable way to enter data
Hi. If I remember correctly, the source table for the drug name does not have a purpose field, there's really no purpose to automatically show when a drug was chosen.Many thanks really strting to take shape and looks a lot better using that technique.. My medications table a part form ID and foreign key has two fields the drug name and its purpose.. I never want to select the purpose but do want it to show when I select a drug.. do I link this through a relationship, query or is there a setting
If you want the purpose to be a dropdown, then you could create a separate table for it, just like how you did it with the meds table.Ok so could I ask would need a relationship or another link some how
Well then, sounds like you just need to add a purpose field in the meds table. However, I don't understand that. Can you provide some examples of meds and their purpose? Thanks.The prime is the medication name,,, the pupose needs to match the prime
Purpose does not need to be selectable
Okay, so, if the purpose is specific to a medication, then just add it to the meds table.Yes certainly the medication selection is purley a record of what a patient is taking so that the clinician can handover to a hospital or recieving body to ensure there are no reactions
The prupose is purley advice for the clinician entering data, for example if the patient was taking penicilian the purpose would be antibiotic,, just used as an indicator
very nice intentionThe lookup list is is in one table called medication,
the lbdrugs list box is populated through a combo box that takes its data from the medication table.. My problem is linking the list box lbdrugs to a table where the selected records are held. Essentaiily a patient record
Me.lbdrugs.AddItem (Me.cgdrugadd.Column(1))
Me.lbdruginfo.AddItem (Me.cgdrugadd.Column(2))
Welcome dubWill have tinker later many thanks
Will have tinker later many thanks
good luckThanks you are all amazing, building this for fun and a bit of education and so far learnt so much with all of your help
The calcualtions are next they could be interesting