Oy!
CR Dev 11
SQL Server 2000
I have designed a patient statement. The details section for each patient with an oustanding balance contains [Date of Service], CPT, Proceedure, Charges, CoPay, Notes, Ins1_Paid, Ins2_Paid, Patient_Paid, Discount and [Patient Owes]. I am pulling this data together from a table and 4 views. I have 2 groups in my report; [Date of Service] and [Chart Number]. In GH1 I have the guarantors name and address and some other identifying data. GF1a contains a total of each amount due for all dates of service. The Notes field is really a varchar (8000) on the database. Currently there is a field in the report that acts as a counter if there is a comment tied to that record. That counter starts at #2 because #1 will always display a comment from the company. It displays {2,3,4,5, etc.} for as many recrods as have comments tied to them.
So in GF1b I need a key that ties the number displayed with the actual comment. Because the comment can be quite lengthy and will not fit in a 1/2 inch field I have to relocate it below the details section. Everything but this comment relocation works great. I have used several of the tips from this forum in developing it. Thanks!
Example:
(working)
DateofService CPTCode Proceedure Charges CoPay Notes MedicaidPaid SecondaryPaid PatientPaid Discount PatientOwes
8/19/2005 99999 HeartCathInsert $250.00 $10.00 2 $100.00 $90.00 $0.00 $0.00 $50.00
8/25/2005 99998 HeartCathRemove $100.00 $0.00 3 $26.00 $40.00 $0.00 $4.00 $30.00
Total Due $80.00
(not working)
1. This is the billing companies notes -PAY THE DR.
2. This is a new patient and they need to stop eating fast food. 4th heart attack in 2 months.
3. Plaque build up irrevearsable this patient will die, get money soon.
TIAFTH
CR Dev 11
SQL Server 2000
I have designed a patient statement. The details section for each patient with an oustanding balance contains [Date of Service], CPT, Proceedure, Charges, CoPay, Notes, Ins1_Paid, Ins2_Paid, Patient_Paid, Discount and [Patient Owes]. I am pulling this data together from a table and 4 views. I have 2 groups in my report; [Date of Service] and [Chart Number]. In GH1 I have the guarantors name and address and some other identifying data. GF1a contains a total of each amount due for all dates of service. The Notes field is really a varchar (8000) on the database. Currently there is a field in the report that acts as a counter if there is a comment tied to that record. That counter starts at #2 because #1 will always display a comment from the company. It displays {2,3,4,5, etc.} for as many recrods as have comments tied to them.
So in GF1b I need a key that ties the number displayed with the actual comment. Because the comment can be quite lengthy and will not fit in a 1/2 inch field I have to relocate it below the details section. Everything but this comment relocation works great. I have used several of the tips from this forum in developing it. Thanks!
Example:
(working)
DateofService CPTCode Proceedure Charges CoPay Notes MedicaidPaid SecondaryPaid PatientPaid Discount PatientOwes
8/19/2005 99999 HeartCathInsert $250.00 $10.00 2 $100.00 $90.00 $0.00 $0.00 $50.00
8/25/2005 99998 HeartCathRemove $100.00 $0.00 3 $26.00 $40.00 $0.00 $4.00 $30.00
Total Due $80.00
(not working)
1. This is the billing companies notes -PAY THE DR.
2. This is a new patient and they need to stop eating fast food. 4th heart attack in 2 months.
3. Plaque build up irrevearsable this patient will die, get money soon.
TIAFTH