I have two different visibility regions that produce text boxes given specific conditions. Those work fine. My question is in regards to the text that is produced in the Chart Note. I would like to have them displayed as two different paragraphs.
Currently, it looks like this:
Text field one - visible when condition is met. This is working just fine. Filler text to get to the next line. Now somewhere in here the second text field is displayed.
What I would like is for it to display as:
Text field one - visible when condition is met. This is working just fine. Filler text to get to the next line.
This is where the second text field should be displayed.
I've tried going into the translation side of text field one and adding variations of HRET or \r\n. By variations, I mean including those in quotes or parenthesis (because I get an error that indicates it's expecting an open paren).
Can you post the MEL that you have set up for the Text Translation?
It's just simple text, I'm not sure what you're asking for.
I'm looking for the statement that is producing your Text Translation. Within the form under the Translation tab in the Chart Note box.
I would be happy to take a look at your form if you wanted to upload the VFE EncounterForm here or e-mail it to me directly.
You can do a simple version of this:
if you have document.text1 and document.text2, go to the translation field for document.text2 and do this:
{if document.text1 == "" then FMT("Your text goes here.","") else FMT("
your text goes here.","") endif}