Hi Everyone,
I have a custom form that doesn't properly translate into the text of a note. I need Allergies to display in both the form & note, even if there are NKDA. Please help.
Thank you.
Rebecca B.
WMPNY
Can i see what you have?
Here is what I have in the data display box:
{If OBSANY("NKA")=="T" Then "NKA" Else If OBSANY("NKA")=="F" Then ALL_AFTER("comma") Else "" Endif Endif}
I also have a check box underneath that has "This patient has no known allergies." Which gives a "T" statement which pushes to the data display.
Am I missing something?
If it is for translation you probably need something like this:
{If OBSANY("NKA")=="T" Then fmt("NKA","") Else If OBSANY("NKA")=="F" Then fmt(ALL_AFTER("comma"),"") Else "" Endif Endif}
That works nicely...thank you again.
Rebecca B.
How do you display the allergy and the reaction in the note?