I am building a letter for an insurance exam. We want to pull as much data into the letter as possible to lessen the amount of manual add from the provider. I am in need of a function that will pull the Social History Data off of the form within an office visit. Any Help would be greatly Appreciated!!
Thank you!
Sirna
Here is what I put in to a letter for Social history - prints a header than uses OBSANY to pull the obs terms and then uses CFMT to only print if the obs term exists:
{fmt(HRET + "SOCIAL HISTORY:\r\n","B,1")}{cfmt(OBSNOW("SH REVIEWED"),"","REVIEWED: ","","\r\n")}{cfmt(OBSANY("SMOK STATUS"),"","Tobacco Use: ","","\r\n")}{cfmt(OBSANY("ALCOHOL COMM"),"","Alcohol Use: ","","\r\n")}{cfmt(OBSANY("DRUG USE"),"","Drug Use: ","","\t\t")}{cfmt(OBSANY("DRUGOFCHOICE"),"","Substance: ","","\r\n")}{cfmt(OBSANY("MARITAL STAT"),"","Marital Status: ","","\t\t")}{cfmt(OBSANY("SHLIVEARRANG"),"","Living With: ","","\r\n")}{cfmt(OBSANY("SOCIAL HX"),"","Additional SH: ","","\r\n")}
Thank you! I actually got it to do what I needed about an hour after I posted this!