Medical information

Is there a way to extract medical information other than predefined Nurses lists?

I am working on a report that displays medical information that appear in 4 different lists and would like to get all information in one step. I couldn't find any API endpoints, but there is possibility I looked at the wrong place.

Thank you

Comments

  • I haven't found any way to extract medical data, except for medical lists on the Nurse screens.

    One fun aspect of the CSV exports is that the carriage returns aren't escaped, so when you import data that has returns in fields, it prematurely ends the record…so I run the files through this before importing:

    perl -pi -e 's/((?:^[^"]*"|(?!^))[^"]*?(?:"[^"]*"[^"]*?)*?)(\\n{1,})/$1/g' ~/Documents/BB_Data/BB_Med_Forms/fmm-1.csv

    perl -pi -e 's/((?:^[^"]*"|(?!^))[^"]*?(?:"[^"]*"[^"]*?)*?)(\\n{1,})/$1/g' ~/Documents/BB_Data/BB_Med_Forms/fmm-1.csv

  • @Julian Daniel
    Thank you for the tip Julian.

    I save the exported information as .xslx and didn't experience the problem.

Categories