Values and maxiums

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm soooo lost here. I need a way to reference a hire date (E15) , and if
the date is earlier than July 1st ,1989, allow a maxium of 201 to be
accumulated in U35, but, if the hire date is July 1,1989 or later, allow a
maxium of 120 to be accumulated in U35. I believe my brain just
spontaneously cumbusted on this one......Ouch....Help....Ben
 
You can use data validation if the entry is being typed into U35, but i
U35 is a formula, that won't do it..

---Glen
 
You could use another cell:
=MIN(U35,IF(E15<DATE(1989,7,1),201,120))
or
=MIN(whateverformulawasinU35,IF(E15<DATE(1989,7,1),201,120))
 
Assuming U35 is a formula summation, how about just using a conditiona
format to color the cell if the value in the cell excceds th
allowable? (alowable can be set via the formula, or calculate
elsewhere with an If statement & then referenced in the conditiona
formula.)

Not as nice as validation, but it would quickly highlight violations.

---Glen
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top