P
Patti
Hello,
I'm working with a range of numbers and I want to produce a field that says:
61-90 days
91-120 days
over 120 days
How can I set up this query? I've been playing around with update query but
really getting nowhere. IN excel its rather simple, so it should be easy to
do in Access, I just can't figure it out. :
=IF(AG2<30,"< 30 days",IF(AND(AG2>29,AG2<61),"30-60
days",IF(AND(AG2>59,AG2<91),"61-90 days",IF(AND(AG2>90, AG2< 121),"91-120
days", IF(AG2>120,">120 days")))))
I'm working with a range of numbers and I want to produce a field that says:
30-60 days30 days
61-90 days
91-120 days
over 120 days
How can I set up this query? I've been playing around with update query but
really getting nowhere. IN excel its rather simple, so it should be easy to
do in Access, I just can't figure it out. :
=IF(AG2<30,"< 30 days",IF(AND(AG2>29,AG2<61),"30-60
days",IF(AND(AG2>59,AG2<91),"61-90 days",IF(AND(AG2>90, AG2< 121),"91-120
days", IF(AG2>120,">120 days")))))