Does anyone know how to remove the ICD codes from teh A&P text translation? Example below:
Impression & Recommendations:
Problem # 1:
Hx of SPRAIN AND STRAIN OF LUMBOSACRAL (ICD-846.0)
If you have in any translations something like this
if (DOCUMENT.INCL_COMMENT == "Y" AND ProblemArray[nIndex][4] <> "") then
strFormattedAssessment = strFormattedAssessment + " (" + ProblemArray[nIndex][4] + ")"
endif
Your Field for ICD is number 4
1 | Action | ADD |
2 | Problem Type | DX OF |
3 | Description | CHOLERA |
4 | Problem Code | ICD-001.9 |
5 | Problem Comment | Pt traveled in Africa |
6 | Onset Date | 8/11/2003 |
7 | Stop Date | 09/23/2003 |
8 | Stop Reason | C |
9 | Status | N |
10 | Old Problem Type (change only) | DX OF |
11 | Old Problem Description (change only) | Infection, salmonella |
12 | Old Problem Code (change only) | ICD-003.9 |
13 | Old Problem Comment | Pt. traveled in both Africa and Middle East |
14 | Signed/Unsigned | UNSIGNED |
15 | Comments | Assessment |
Conda said:
If you have in any translations something like this
if (DOCUMENT.INCL_COMMENT == "Y" AND ProblemArray[nIndex][4] <> "") then
strFormattedAssessment = strFormattedAssessment + " (" + ProblemArray[nIndex][4] + ")"
endif
Your Field for ICD is number 4
1 Action ADD 2 Problem Type DX OF 3 Description CHOLERA 4 Problem Code ICD-001.9 5 Problem Comment Pt traveled in Africa 6 Onset Date 8/11/2003 7 Stop Date 09/23/2003 8 Stop Reason C 9 Status N 10 Old Problem Type (change only) DX OF 11 Old Problem Description (change only) Infection, salmonella 12 Old Problem Code (change only) ICD-003.9 13 Old Problem Comment Pt. traveled in both Africa and Middle East
14 Signed/Unsigned UNSIGNED 15 Comments Assessment
Will this work for the CCC-A&P form? We utilize that form for our assessment. Thsi will definitely work for our Clinical Visit Summary so thank you!
If you are using the text file editor then clear out the column that has the code in it
If you are using the raw file the clear it here
ccc_IM_1_CPOE_exec("Neck Sprain/Strain^CCC-NSAIDs^^Discussed use of medications, application of heat or cold, and exercises. ^ICD-847.0^4,5,56,58^")
ccc_IM_1_CPOE_exec("Amenorrhea^CCC-Amenorrhea^^^ICD-626.0^39,61^")
ccc_IM_1_CPOE_exec("Abdominal Pain^^^Discussed symptom control with the patient. ^ICD-789.0^46^")
Those are the templates, right? What about if we do not use the template? If I select a problem on Assessment #1 from the dropdown list it automatically places the ICD in the test translation. Will that work to remove it?
What did you use to orignally create the form?
I did not create the form it is a CCC form out of the box. I think I may have to create a home grown form to accomplish what they want.