I have a provider that would like to be able to add his abnormal text to the normal boxes. We currently have a text box for the normals and check box to the right for the abnormals. Not sure how to not make it replace the text but add to it.
Depending on how your form is built you can do this in a couple of ways. You can create an action button that will append the result of document.variable2 to the end of document.variable1. Alternatively, you can write some code, something like {if document.variable1 "" and document.variable2 "" then document.variable1 = document.variable1 + document.variable2 else "" endif}. You can also accomplish something similar by putting code into the chart text translation field
The problem is my text box is attached to an ob and my check boxes are document variables.