Abs([YourField]) remove the sign.

Signature
KARL DEWEY
Build a little - Test a little
Thank you so very much, that saved me hours of balancing that schedule.
I ended up using the following criteria.
criteria: Like "-" & Abs([Amount])
or: Abs([Amount])
> Abs([YourField]) remove the sign.
>
[quoted text clipped - 3 lines]
> > So I want to be able to enter "18.50" once and it return all like numbers.
> > How do I do this.
John Spencer - 31 May 2008 13:21 GMT
I think Karl meant
Field: Abs(YourField)
Criteria: Abs([Your Search Value])
Or you could do
Field: YourField
Criteria: [Your Search Value]
Criteria: [Your Search Value] * -1
The latter will be the most efficient, especially if YourField is
indexed. With small recordsets you might see no real difference in
performance.
'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
'====================================================
> Thank you so very much, that saved me hours of balancing that schedule.
>
[quoted text clipped - 10 lines]
>>> So I want to be able to enter "18.50" once and it return all like numbers.
>>> How do I do this.