Hi, running CR 8.5 against a SQL server database.
I have a patient table where each patient can have more than one insurance company. The companies are assigned a priority of 1, 2, 3…
I want to report the policy numbers for MEDICAID if the priority is 1 or 2 in field one; for MEDICARE if the priority is 1 or 2 in field two. I added the insurance table twice to my report with two separate names. One is for Medicare and the other for Medicaid. I put each policy number in a separate detail line but still only one number displays on both fields. I put this code under suppress for each policy number field.
Field one: Left (Medicaid_name, 8) <> “MEDICAID” and priority > 3.
Field two: Left (Medicare_name, 8) <> “MEDICARE” and priority > 3.
Please help!
Mo
I have a patient table where each patient can have more than one insurance company. The companies are assigned a priority of 1, 2, 3…
I want to report the policy numbers for MEDICAID if the priority is 1 or 2 in field one; for MEDICARE if the priority is 1 or 2 in field two. I added the insurance table twice to my report with two separate names. One is for Medicare and the other for Medicaid. I put each policy number in a separate detail line but still only one number displays on both fields. I put this code under suppress for each policy number field.
Field one: Left (Medicaid_name, 8) <> “MEDICAID” and priority > 3.
Field two: Left (Medicare_name, 8) <> “MEDICARE” and priority > 3.
Please help!
Mo