Have you looked at the table? If you are using this expression {=IIf([AmtRec]+[AmtRec2]>=[TotalFees],True,False)} as the Controlsource of a control on your form, then the result is not being stored. Nor should it be. If Paid
is a calculation then you should be using the same calculations in your query. So your query should actually look something like this:
SELECT PapersTbl.Attorney, PapersTbl.Address1, PapersTbl.Address2, PapersTbl.City, PapersTbl.State, PapersTbl.Zip, PapersTbl.Plaintiff, [ServiceFee]+[ReturnFee]+(Int(-100*([NoMiles]*0.595))/-100)
AS TotalFees, IIf([AmtRec]+[AmtRec2]>=[TotalFees],True,False) AS Paid
FROM PapersTbl
WHERE (((PapersTbl.Paid)=False) AND ((PapersTbl.Returned) BETWEEN #7/1/2013# And #7/25/2013#))
ORDER BY PapersTbl.Attorney;
Note, I prefer the BETWEEN operator than the >=,<= that you used, but using them is not wrong.