Often you need to repeat the initial calculation instead of using it
elsewhere - especially if you are sorting or filtering on the calculated
field.
Try
SC_amt: ([Amount]-[TotalPayments])*[Serv_ch]
Bal_due: ([Amount]-[TotalPayments])*(1+[Serv_ch])
If Serv_ch is a calculation, try replacing it with the calculation.
'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
'====================================================
> I have a query that includes two expressions(with calcs) named 'SC_amt' and
> 'Bal_due'
[quoted text clipped - 11 lines]
>
> Any suggestions?
James - 03 Feb 2008 03:40 GMT
I found the problem
The "Total:" for these two was set to Group By instead of Epression as are
the other named(declared) Expressions are, if thats correct.
I should have caught that. Thanks for your time.
> Often you need to repeat the initial calculation instead of using it
> elsewhere - especially if you are sorting or filtering on the calculated
[quoted text clipped - 29 lines]
>>
>> Any suggestions?