Our billing creates a missing/invalid information report in an ansi (txt) format.
I need to turn this into a readable excel form.
The report comes across as follows:
When I do the text to columns, all the problems are split up also. I need to move the problems over to another columns on the right hand side of the patient information.
Most of the time, there is only one error, but like in the example above, there are some that have multiples.
I need to tell the computer to look for the rows with the patient info, create columns for the errors beneath, stop when there is a blank line, and start again at the next patient.
I hope this makes sense.
Also, every page is prefixed with headers
That need to be stripped.
Any help you can provide, would be much appreciated.
I need to turn this into a readable excel form.
The report comes across as follows:
Code:
Accession Patient Service Client Estimated Price
------------ ------------------------------ ----------- -------- ------------
123L12345 SMITH,JOHN 09/29/2004 5 20.00
DIAGNOSIS IS REQUIRED FOR ALL COMPONENTS OR THE D.O.S. - MC
123L13652 SMITH,MARY 04/17/2004 10 30.00
DIAGNOSIS IS REQUIRED FOR ALL COMPONENTS OR THE D.O.S. - MC
123L12654 SMITH,DOROTHY 04/22/2004 10 100.00
DIAGNOSIS IS REQUIRED FOR ALL COMPONENTS OR THE D.O.S. - MCRR
RESPONSIBLE PARTY REQUIRED -MC
RESPONSIBLE PARTY ADDRESS REQUIRED -MC
MEDICARE HIC NO. REQUIRED - MC
MEDICARE HIC FORMAT INVALID -MC
When I do the text to columns, all the problems are split up also. I need to move the problems over to another columns on the right hand side of the patient information.
Most of the time, there is only one error, but like in the example above, there are some that have multiples.
I need to tell the computer to look for the rows with the patient info, create columns for the errors beneath, stop when there is a blank line, and start again at the next patient.
I hope this makes sense.
Also, every page is prefixed with headers
Code:
One Two Three Company REPORT Page 3
DEPARTMENT
10/06/2004
User: USERNAME 1:45 PM EDT
Accession Patient Service Client Estimated Price
------------ ------------------------------ ----------- -------- ------------
That need to be stripped.
Any help you can provide, would be much appreciated.