Hello all,
I am trying to build a consult letter that pulls key data elements (instead of having to send an entire note to the referring). I am having trouble pulling the the assessment and plan portion. This is what I have and it's not working:
…I am writing to report my evaluation of {Patient.firstName} {Patient.lastName}, a {PATIENT.FORMATTEDAGE} {PATIENT.SEX} on whom I consulted {LASTNOTEDATE()} at {CLINIC.SITENAME}.......
My assessment is as follows: {LASTOBSVALUE('Impression')}. The plan at this time is as follows: {LASTOBSVALUE('Plan')}......
Any help would be extremely appreciated.
Figured it out finally, thanks anyway!
would you mind sharing your solution? I'm having the same issue. Thanks!
I am looking for this as well. Currently trying to build a patient handout that is a summary of a visit. Need to figure out how to pull the Assessment and Plan into the handout. Can you share this if you have figured it out?
Thank you,
Lef
I ended up using this for a consult note:
If you search the help for the Assessment & Plan, there is another option to pull in the Assesment: LIST_ASSESSMENT, but I just ended up copying the info from a CCC letter because the format came out nicer looking
{DATESTAMP()}
?
Referring Provider: {PATIENT.REFMDFIRSTNAME} {PATIENT.REFMDLASTNAME}
Re: {PATIENT.LABELNAME}
Date of Visit: {LASTNOTEDATE()}
DOB: {PATIENT.DATEOFBIRTH}
CC: {(OBSANY("CHIEF CMPLNT"))}
History of Present Illness:
{(OBSPREV("HPI"))}
VItal Signs:
{cfmt(OBSANY("BP SYSTOLIC"),"", "Blood Pressure: ", "", "/")}{cfmt(OBSPREV("BP DIASTOLIC"),"","","",".")} {cfmt(OBSANY("RESP RATE"),"", "Pulse: ", "", ".", "")}
Patient Profile: {PATIENT.FORMATTEDAGE} {PATIENT.SEX}
{cfmt(OBSANY("WEIGHT"),"", "Weight: ", "", ".", "")}
{cfmt(OBSANY("HEIGHT"),"", "Height: ", "", ".", "")}
Current Medications:
{MEDS_AFTER()}
?
Allergies:
{ALL_AFTER()}
Past Medical History:
{(OBSANY("PAST MED HX"))}
Past Surgical History:
{(OBSANY("PAST SURG HX"))}
Family History:
{(OBSANY("FAMILY HX"))}
Impression & Recommendations:
{ccc_add_assess("Last Visit","","L")}
Thank you. I must still be missing something because I still don't get any assessment or plan.
Lef
The code for the assessment & plan in what I posted only works for the last visit, so unless you've signed the visit with the A&P, it won't show up when you print. You can change that L to a "C" so that it prints the Current visit, which doesn't need to be signed. If none of those work, check your clinical list changes to see how the A & P is captured there.