I've created a form in VFE that works with the protocols set in GE. I have a data field displaying last OBS for Colonoscopy and FOBT. It ties to the protocols and lets the provider know what the patient is due for.
I would like it to alert the provider that the patient does not need a Colonoscopy if they had an FOB and vice versa. Unsure if this needs to be done in VFE or in protocols.
Any help is appreciated!!!!!!!
I have used the following programming (actually in a letter, but can be used elsewhere) to show what is done or due. In this example, checking on Mammograms (in Courier font, since that is fixed pitch and I can use space characters to line things up.) I actually repeat this for several protocols that I check for compliance.
Name How often due Last done Status
{if match(LISTPROTOCOLFULL(),1,"MAMMOGRAM")>0
then "Mammogram Every 2 years " +
if LASTOBSDATE("MAMMOGRAM")==""
then " DUE"
else LASTOBSDATE("MAMMOGRAM")+ " " +
if match(LISTPROTOCOLSHORT(),1,"MAMMOGRAM")>0
then "DUE"
else "Done"
endif
endif
else ""
endif}