I've written a report that pulls active pharmacy orders for a given patient, which is exactly what my end users (doctors) need. However, they want to be able to right-click on a single field and copy all the data for a given patient.
So far, I've got the report sorted by patient and have combined the columns in the report into one, using the following formula:
{history_client_order.order_description} + ", " + {history_client_order.dosage} + ", " + {history_client_order.frequency_description} + ", " + totext({history_client_order.start_date}) + ", " + {history_client_order.ordering_pract_name} + chr(13)
Basically, I intended that formula to create one large field, with a line break at the end of each line- so that they could copy all the data in a given group's details and paste directly to their client application.
Also, exporting to an xls or doc is out of the question because its "too complex a procedure" (read: they're too lazy to do it).
So far, I've got the report sorted by patient and have combined the columns in the report into one, using the following formula:
{history_client_order.order_description} + ", " + {history_client_order.dosage} + ", " + {history_client_order.frequency_description} + ", " + totext({history_client_order.start_date}) + ", " + {history_client_order.ordering_pract_name} + chr(13)
Basically, I intended that formula to create one large field, with a line break at the end of each line- so that they could copy all the data in a given group's details and paste directly to their client application.
Also, exporting to an xls or doc is out of the question because its "too complex a procedure" (read: they're too lazy to do it).