J
John Childs
Under Access97, I have a reconciliation application that
has a form that sits over a table - the form is only
showing those items that have not been reconciled (filters
where field "reconciled" = false
Relevant fields in table are:
ID (Used to identify transaction amounts)
TranAmount
Reconiled (Yes/No check box)
The form uses an order by property of:
abs(Summary.TranAmount)
This order by is used to bring "like" amounts together -
the reconciliation clerk is able to easily see if for an
ID value, the amounts are equal and opposite
e.g Data
ABC -6.55
ABC 7.55
ABD 555
ABE -100
ABC -7.55
Using the order by on the form
ABC -6.55
ABC 7.55
ABC -7.55
ABE -100
ABD 555
Reconciliation clerk would see that the 7.55 and -7.55
match off with one another and would therefore set the
reconciled check box for both records to Yes
For some reason, Access 2003 does not like using abs
(Summary.TranAmount) in the order by property of the form -
it seems to not recognise the orderby on the tranAmount
field and will orderby the ID field
Any ideas on how to get around this????
has a form that sits over a table - the form is only
showing those items that have not been reconciled (filters
where field "reconciled" = false
Relevant fields in table are:
ID (Used to identify transaction amounts)
TranAmount
Reconiled (Yes/No check box)
The form uses an order by property of:
abs(Summary.TranAmount)
This order by is used to bring "like" amounts together -
the reconciliation clerk is able to easily see if for an
ID value, the amounts are equal and opposite
e.g Data
ABC -6.55
ABC 7.55
ABD 555
ABE -100
ABC -7.55
Using the order by on the form
ABC -6.55
ABC 7.55
ABC -7.55
ABE -100
ABD 555
Reconciliation clerk would see that the 7.55 and -7.55
match off with one another and would therefore set the
reconciled check box for both records to Yes
For some reason, Access 2003 does not like using abs
(Summary.TranAmount) in the order by property of the form -
it seems to not recognise the orderby on the tranAmount
field and will orderby the ID field
Any ideas on how to get around this????