<style type="text/css">p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Lucida Grande'}p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Lucida Grande'; min-height: 15.0px}</style>I am trying to develop a database that can help to analyze national essential medicine lists, to use as a policy tool to help improve access to medicines. Your help would be greatly appreciated.
I'd like to create a database comparing multiple medicine lists, where for each row, a medicine name (paracetamol), form (tablet), and dose (500mg) are given. If in two worksheets I have two medicine lists (one from WHO and one from a country like India), how can I create a comparison column for medicine names (any paracetamol in WHO list or India list), medicine name+form (any paracetamol tablet in WHO list or India list), medicine name+form+dose (any paracetamol tablet 500mg in WHO list or India list)? Eventually I would like to add many countries, and be able to answer questions such as which have paracetamol (any form or dose), paracetamol tablets (any dose), paracetamol tablets 500 mg?
Right now I have the lists in Excel, but they must be standardized (data cleaning). I would like to figure out if the comparisons above can be made across different cells (with each row being a product = medicine name+form+dose). I have tried to understand if a relational database and formulas and unique IDs would work -- but I'm not sure if all the three levels need unique IDs -- the medicine name, the medicine name + form, the medicine name + form + dose.
Otherwise I will manually compare the lists, but this could take too much time and create many errors.
I used the following formula to match between two lists, but this only worked comparing one cell, medicine name
=IF(ISERROR(VLOOKUP([@INN],BANNEML2017[[#All],[INNBAN]], 1, FALSE)),0,1 )
WHERE,
INN = medicine name in WHO List
BANNEML2017 = workbook for Bangladesh
INNBAN = medicine name in Bangladesh list
Here is a sample of the source data for WHO and India described above:
http://www.who.int/medicines/publications/essentialmedicines/20th_EML2017.pdf?ua=1
http://cdsco.nic.in/WriteReadData/NLEM-2015/NLEM, 2015.pdf
I'd like to create a database comparing multiple medicine lists, where for each row, a medicine name (paracetamol), form (tablet), and dose (500mg) are given. If in two worksheets I have two medicine lists (one from WHO and one from a country like India), how can I create a comparison column for medicine names (any paracetamol in WHO list or India list), medicine name+form (any paracetamol tablet in WHO list or India list), medicine name+form+dose (any paracetamol tablet 500mg in WHO list or India list)? Eventually I would like to add many countries, and be able to answer questions such as which have paracetamol (any form or dose), paracetamol tablets (any dose), paracetamol tablets 500 mg?
Right now I have the lists in Excel, but they must be standardized (data cleaning). I would like to figure out if the comparisons above can be made across different cells (with each row being a product = medicine name+form+dose). I have tried to understand if a relational database and formulas and unique IDs would work -- but I'm not sure if all the three levels need unique IDs -- the medicine name, the medicine name + form, the medicine name + form + dose.
Otherwise I will manually compare the lists, but this could take too much time and create many errors.
I used the following formula to match between two lists, but this only worked comparing one cell, medicine name
=IF(ISERROR(VLOOKUP([@INN],BANNEML2017[[#All],[INNBAN]], 1, FALSE)),0,1 )
WHERE,
INN = medicine name in WHO List
BANNEML2017 = workbook for Bangladesh
INNBAN = medicine name in Bangladesh list
Here is a sample of the source data for WHO and India described above:
http://www.who.int/medicines/publications/essentialmedicines/20th_EML2017.pdf?ua=1
http://cdsco.nic.in/WriteReadData/NLEM-2015/NLEM, 2015.pdf