G
Guest
I have the following parameter query which returns data on my pc (XP) and did
at one time on another (2K) until that one was re-imaged. Now it returns
nothing on that pc. They both are on the same version of Access. Is there
something wrong with the setup of the second pc?
SELECT qryPatcomSuspensePatch.NewLine, qryPatcomSuspensePatch.NewBatch,
qryPatcomSuspensePatch.AcctNum, qryPatcomSuspensePatch.CDMNum,
qryPatcomSuspensePatch.SVCDate, qryPatcomSuspensePatch.Qty,
qryPatcomSuspensePatch.Price, qryPatcomSuspensePatch.DEPT,
qryPatcomSuspensePatch.Expl, qryPatcomSuspensePatch.Order,
qryChargelog2.patient_name, qryChargelog2.ord_num, qryChargelog2.charge_num,
qryChargelog2.drug_name, IIf([final_qty]=0,IIf([bill_type]='PCR','- ',' ') &
[disp_unit_qty] & ' x ' & [bill_unit_qty],' ') AS Disp, qryChargelog2.ID1,
qryChargelog2.bill_timestamp AS Expr1, qryPatcomSuspensePatch.PostDate
FROM qryChargelog2 INNER JOIN qryPatcomSuspensePatch ON qryChargelog2.Order
= qryPatcomSuspensePatch.Order
WHERE (((qryChargelog2.bill_timestamp) Like [Billed Date: ] & "*"))
ORDER BY qryChargelog2.ID1;
Thanks,
at one time on another (2K) until that one was re-imaged. Now it returns
nothing on that pc. They both are on the same version of Access. Is there
something wrong with the setup of the second pc?
SELECT qryPatcomSuspensePatch.NewLine, qryPatcomSuspensePatch.NewBatch,
qryPatcomSuspensePatch.AcctNum, qryPatcomSuspensePatch.CDMNum,
qryPatcomSuspensePatch.SVCDate, qryPatcomSuspensePatch.Qty,
qryPatcomSuspensePatch.Price, qryPatcomSuspensePatch.DEPT,
qryPatcomSuspensePatch.Expl, qryPatcomSuspensePatch.Order,
qryChargelog2.patient_name, qryChargelog2.ord_num, qryChargelog2.charge_num,
qryChargelog2.drug_name, IIf([final_qty]=0,IIf([bill_type]='PCR','- ',' ') &
[disp_unit_qty] & ' x ' & [bill_unit_qty],' ') AS Disp, qryChargelog2.ID1,
qryChargelog2.bill_timestamp AS Expr1, qryPatcomSuspensePatch.PostDate
FROM qryChargelog2 INNER JOIN qryPatcomSuspensePatch ON qryChargelog2.Order
= qryPatcomSuspensePatch.Order
WHERE (((qryChargelog2.bill_timestamp) Like [Billed Date: ] & "*"))
ORDER BY qryChargelog2.ID1;
Thanks,