I know I have seen on the listserve where some have been able to have certain items bold in the body of the text but not everything. Say I wanted to have the abnormals in a paragraph translation show up in bold, but the normals to stay regular text?
Anyone that has done this willing to share?
Thanks,
If you are talking about making a text bold in the chart note, you would just wrap what you want to bold with FMT("text here", "B"). So, if this were in the Chart Note Translation it would look like this:
"Make " + FMT("this", "B") + " bold."
Looks like:
Make this bold.
Is this what you are talking about?
no. That I know and have done. It is more of a dynamic way to doing it. Wish I could find which email thread it was in on the list serve but couldnt find it. Will just keep plugging away at it.
I am not sure if this is what you are wanting to do, but I was thinking about implementing something like this in my exam form.
If default/normal exam for heart auscultation is "regular rate and regular rythym"
translation could go
{if OBSNOW("HEARTAUSC") == "regular rate and rythym" then
CFMT(OBSNOW("HEARTAUSC","B","Heart Ausc: ","U"," ")
else
CFMT(OBSNOW("HEARTAUSC","","Heart Ausc: ","U"," ")
endif}