Hello all,
We upgraded to EMR 9.5 in Feb this year. With that, as you are aware, you can associate diagnoses with medications. Under the Print button, Chart > Clinical List > Medications Report, you can print off a list of basically the information of the Medications tab of a patient's chart. Since the associated Dx and critical overrides are now part of the Medications Tab, I was rather hoping the standard report would have been updated. I am guessing this will not be done by GE.
I do not think this would be a priority if I would try to enter it as an enhancement, so I thought I would ask here first. The problem is we are hosted by GE. We do not have access to the Reports folder to try and alter this report. Does any kind soul out there have some sort of simple Medication with associated Dx report that can be printed off for a patient, active meds only? I did not see anything on the Trading Post. If we have the report, we can send it to the Hosted team to upload on our servers. It will be a while before we have access to write Crystal Reports. That arrangement has yet to happen.
Thanks!
Wendy A. Walecka, MS RN
Information Systems - Clinical
Affinity Health System
Ph: (920) 628-9423
email: [email protected]
wwalecka said:
Hello all,
We upgraded to EMR 9.5 in Feb this year. With that, as you are aware, you can associate diagnoses with medications. Under the Print button, Chart > Clinical List > Medications Report, you can print off a list of basically the information of the Medications tab of a patient's chart. Since the associated Dx and critical overrides are now part of the Medications Tab, I was rather hoping the standard report would have been updated. I am guessing this will not be done by GE.
I do not think this would be a priority if I would try to enter it as an enhancement, so I thought I would ask here first. The problem is we are hosted by GE. We do not have access to the Reports folder to try and alter this report. Does any kind soul out there have some sort of simple Medication with associated Dx report that can be printed off for a patient, active meds only? I did not see anything on the Trading Post. If we have the report, we can send it to the Hosted team to upload on our servers. It will be a while before we have access to write Crystal Reports. That arrangement has yet to happen.
Thanks!
Wendy A. Walecka, MS RN
Information Systems - Clinical
Affinity Health System
Ph: (920) 628-9423
email: [email protected]
We setup the following Letter Template code to print the MedList with Indications.
Greg Diederich
Associate Director
Stanislaus County Health Services Agency
Patient Name: {PATIENT.LABELNAME}
Printed: {DATETIMESTAMP()}
Your Medications are:
{MEDLIST = getfield(MEDS_AFTER("delim"),"|","" )
MEDSIZE = size(MEDLIST)
RETURNMED = ""
for COUNT=1, COUNT <= MEDSIZE, COUNT = COUNT + 1
do
GETMED = getfield(MEDLIST[COUNT],"^","")
RETURNMED = RETURNMED + fmt(GETMED[1], "B") + " (" +GETMED[2] + ")
\t" + GETMED[7] +"
"
IF GETMED[15] <> "" THEN
RETURNMED = RETURNMED + "\tIndications: "+GETMED[15] +"
"
ENDIF
RETURNMED = RETURNMED +"\n"
endfor
RETURNMED
}