L
Luis
Hello:
I have report that will not calculate certain expression
for one record only...I went back to my querie from which
I created my report and the samething has happened...Do
you know why this happens? My querie is composed of 3
tables: preferred vendor, reimbursement, and fee
schedules summary...My reimbursement table is the one I
work from and link to the others....for whatever reason,
it is not picking up standard fee and medicare allowable
from my schedule summary also...The following is my
querie's SQL:
SELECT tbl_chemo_reimbursement_drugs.[2004 HCPCS],
qry_preferred_vendor_cost_final.NDC,
tbl_chemo_reimbursement_drugs.[2004 Billing Unit] AS
[BILLING UNIT], tbl_fee_schedules_summary_payers.
[STANDARD FEE], tbl_fee_schedules_summary_payers.MEDICARE
AS [MEDICARE ALLOWABLE], tbl_chemo_reimbursement_drugs.
[Vial Size], tbl_chemo_reimbursement_drugs.[Vial Unit],
qry_preferred_vendor_cost_final.[PREFERRED COST],
qry_preferred_vendor_cost_final![PREFERRED
COST]/tbl_chemo_reimbursement_drugs![Vial Size] AS [Cost
per mg], [2004 Billing Unit]*[Cost per mg] AS [Cost per
Billing Unit], [MEDICARE ALLOWABLE]-[Cost per Billing
Unit] AS Profit
FROM (tbl_chemo_reimbursement_drugs LEFT JOIN
tbl_fee_schedules_summary_payers ON
tbl_chemo_reimbursement_drugs.[2004 HCPCS] =
tbl_fee_schedules_summary_payers.[SERVICE CODE]) INNER
JOIN qry_preferred_vendor_cost_final ON
tbl_chemo_reimbursement_drugs.NDC =
qry_preferred_vendor_cost_final.NDC;
Thank you,
Luis
I have report that will not calculate certain expression
for one record only...I went back to my querie from which
I created my report and the samething has happened...Do
you know why this happens? My querie is composed of 3
tables: preferred vendor, reimbursement, and fee
schedules summary...My reimbursement table is the one I
work from and link to the others....for whatever reason,
it is not picking up standard fee and medicare allowable
from my schedule summary also...The following is my
querie's SQL:
SELECT tbl_chemo_reimbursement_drugs.[2004 HCPCS],
qry_preferred_vendor_cost_final.NDC,
tbl_chemo_reimbursement_drugs.[2004 Billing Unit] AS
[BILLING UNIT], tbl_fee_schedules_summary_payers.
[STANDARD FEE], tbl_fee_schedules_summary_payers.MEDICARE
AS [MEDICARE ALLOWABLE], tbl_chemo_reimbursement_drugs.
[Vial Size], tbl_chemo_reimbursement_drugs.[Vial Unit],
qry_preferred_vendor_cost_final.[PREFERRED COST],
qry_preferred_vendor_cost_final![PREFERRED
COST]/tbl_chemo_reimbursement_drugs![Vial Size] AS [Cost
per mg], [2004 Billing Unit]*[Cost per mg] AS [Cost per
Billing Unit], [MEDICARE ALLOWABLE]-[Cost per Billing
Unit] AS Profit
FROM (tbl_chemo_reimbursement_drugs LEFT JOIN
tbl_fee_schedules_summary_payers ON
tbl_chemo_reimbursement_drugs.[2004 HCPCS] =
tbl_fee_schedules_summary_payers.[SERVICE CODE]) INNER
JOIN qry_preferred_vendor_cost_final ON
tbl_chemo_reimbursement_drugs.NDC =
qry_preferred_vendor_cost_final.NDC;
Thank you,
Luis