D
Daniel Collison
In the detail section of a report, the following fields are included:
Procedure Code (Proc Code)
Claim Status (Claim Status)
Service Units (SumOfUnits_allowed)
A procedure code can have a claim status of 1 (allowed) or 2 (not allowed).
The service units represent a total of all services -- as expressed in units
-- associated with a procedure code of 1 or 2.
In a group footer, I have included a calculated text box to sum all service
units associated with procedure codes in the group. The text box control
source property is set as =Sum([SumOfunits_allowed]). This text box does not
distinguish between service units associated with claim statuses of 1 or 2.
What I really need is to sum for claim status 1 and 2. I created two
separate text boxes with the following formulas in the control source:
=IIf([Claim Status]=1,Sum([SumOfUnits_allowed]),"") and =IIf([Claim
Status]=2,Sum([SumOfUnits_allowed]),""). Neither text box returns a result.
I have limited MS Access experience, and would appreciate any advice related
to this matter?
Procedure Code (Proc Code)
Claim Status (Claim Status)
Service Units (SumOfUnits_allowed)
A procedure code can have a claim status of 1 (allowed) or 2 (not allowed).
The service units represent a total of all services -- as expressed in units
-- associated with a procedure code of 1 or 2.
In a group footer, I have included a calculated text box to sum all service
units associated with procedure codes in the group. The text box control
source property is set as =Sum([SumOfunits_allowed]). This text box does not
distinguish between service units associated with claim statuses of 1 or 2.
What I really need is to sum for claim status 1 and 2. I created two
separate text boxes with the following formulas in the control source:
=IIf([Claim Status]=1,Sum([SumOfUnits_allowed]),"") and =IIf([Claim
Status]=2,Sum([SumOfUnits_allowed]),""). Neither text box returns a result.
I have limited MS Access experience, and would appreciate any advice related
to this matter?