tsquared1518,
The first problem would be you are thunking an Access table is like and
Excel spreadsheet on steriods... NOT. There are no *cells* in Access, there
are fields. Fields which are not programable. The are just there to hold
data. To do what you want you can either create a query and do it there or
do it on the form. Either way, normally you would not store this value in
any field (BUT there are exceptions to the rule).
The calculation to do this is...
IIf([FieldName] Between [LowerLimitFieldName] And
[UpperLimitFieldName],"ACCEPT","REJECT")
--
Gina Whipp
"I feel I have been denied critical, need to know, information!" - Tremors
II
http://www.regina-whipp.com/index_files/TipList.htm
tsquared1518 said:
I am working in Access 2003, and trying to program a cell to put in ACCEPT
or
REJECT, if the previous cell is between or outside the upper and lower
limit
cells. Can anyone help me out with this?