I am using 2 check boxes, the provider will click the appropriate check box for either the AWV or IPPE visit, this is also connected to an obs term. My question is how can I get the word DONE to appear in the flow sheet but not in the document.
Thanks in advance for you assistance.
In VFE open the checkbox, go to the second page called translation and click clear in the chart note section. To get it in the flow sheet, make sure on the options page you have 'Done' in the statement and the connection type is observation.
If I clear the text translation and the box is checked indicating the patient had an AWV that statement does not appear in the chart.
I thought that was what you wanted... Do you just want it not to say done?
The CFMT function works like this
CFMT(variable*, variable formatting, pretext, pretext formatting, post text, post text formatting)
The variable is going to display what is in the statement box if the checkbox is selected, if you want to avoid including that you could write an if-then statement to just output the text you want, or add a replacestr(cfmt(...),"DONE","") to the text translation box, it will essentially do the same thing.
If you copy and paste what you have and what you want it to do I can help you out better
I am having a difficult time copy and pasting into the post. I will try to explain better.
I have a check box that when checked adds "The patient is here today for an annual wellness exam". to the text translation of the document. In addition to that statement in the document I would like the word "Done" to go on the flowsheet in the defined Obs field. I hope that makes sense, just so you know, I have no experience with if-then statements.
Thanks for your help.
Oh okay, i think your connection is to a document variable then? if not make it a document variable connection, Ill give you an example with the variable name AMV_DONE, just add this to the white space, replace obsname with the name of the observation you are trying to save.
{if DOCUMENT.AMV_DONE <> "" then
OBSNOW("obsname","DONE")
else
OBSNOW("obsname","")
endif}
It reads, if the document variable is not blank then save Done to the observation term obsname, otherwise make obsname blank.
I did what you sent me and it did not work, would you have time for a phone call tomorrow?
PM Sent