How do I get the output to look like this:
order 1
order 2
order 3
instead of this:
order 1, order 2, order 3
{CFMT(ORDERS_NEW("LIST"), "", "", "B", "")}
Thanks for your help!!
Gail Ruhlin R.T.(R)
Radiology Coordinator / EMR Specialist
Advanced Orthopaedic Centers
7858 Shrader Rd.
(804) 270-1305 ext. 6398
description Lists active orders for the current patient entered during the current chart update. You can format them into a list with one order per line or separate them with commas. Active orders do not include those with a status of Complete. That means that some orders created and signed during the update, such as injections given or durable medical equipment dispensed at the time of the encounter, are not displayed. type Data symbol function syntax ORDERS_NEW(listtype,order type) arguments
when to evaluate When inserted in the chart note or continuously returns List of all new order description and codes for a patient from the current update. comment list is the default argument for the list_type parameter, and all orders are included. example 1 {ORDERS_NEW(‘list’)} Returns a list of all active orders with codes. Ofc Vst, Est Level IV [CPT-99214] CBC w/o Differential [CPT-85024] Metabolic Panel, Basic [CPT-80049] Ofc Vst, Est Level I [CPT-99211] example 2 {ORDERS_NEW(‘delimited’)} Wart Removal (up to 15)^S^CPT-17110^09/29/2003^^WARTS, BOTH HANDS^ICD-078.19^Removed 22 warts^^^2^^^^^^^^Preauthorization received for unusual anesthesia^U^Harry Winston MD^UNSIGNED^23^Unusual Anesthesia|Acne surgery^R^CPT-10040^09/29/2003^01/05/2004^^^^14^W^12^^Haugen MD, Dennis^^Pacific Falls Clinic^^^^^U^Harry Winston MD^UNSIGNED^^ where used Chart: Text Components, Quick Text Encounter Form Editor: Data Displays, MEL Expressions, Visibility controlling items |
Related symbols |
I am trying to have it display in a data field not the note so that it looks like this:
order 1
order 2
order 3
No matter which listype I choose it will either come out like (order 1 order 2 order 3 or order 1, order 2, order 3) depending if I have the comma delimnated list box checked or not.
Is there any way the data field can present this information like this?
Got it....
ORDERS_NEW()
list is the default. don't need CFMT, unless you want to add a label other than the data display label.