Data Validation

  • Thread starter Thread starter Fred L
  • Start date Start date
F

Fred L

I need some help with something simple, or so I thought.
I need a validation rule that when the sum of a range
exceeds 3, I get a validation error. The Maximum value for
sum of D3:D8 can be 3. Example: If I type anything larger
than 1 in D5,I need a validation error.
I tried several formulas i.e =if(sum(d3:d8>3) but to no
avail.

Column D
3 1
4 1
5
6
7
8

Thanks for the help !
 
Select D3:D8, do data>validation, allow custom and use this formula

=SUM($D$3:$D$8)<=3
 
Back
Top