If you want to use it in a form, and display the right value depend on the
value selected in a combo box, you can create another text box in the form
and in the control source of it write
=IIf(Nz([ComboName],0) >= 5 , 4 , IIf(Nz([ComboName],0) In (3,4) , 2,
IIf(Nz([ComboName],0) In (1,2),0,Null)))
The Nz used to convert Null with 0, Null might return error.
This way no code is involved

Signature
Good Luck
BS"D
> Will this still work if you are setting up an if, then statement where the
> data your are pulling from is in a look-up column.
[quoted text clipped - 10 lines]
> >
> > > What if [Charge] is a numeric field? Would the same apply
Sharon Walls - 26 Apr 2007 03:14 GMT
When you say [ComboName] what field do I use?
The field that is doing the look-up?
> If you want to use it in a form, and display the right value depend on the
> value selected in a combo box, you can create another text box in the form
[quoted text clipped - 20 lines]
> > >
> > > > What if [Charge] is a numeric field? Would the same apply