I have a table where users enter a percentage for each of the 12 months of the year. I am attempting to use data validation to prevent users from entering numbers where the total of all months exceeds 100%. See below.
If users enter a value in C4:C15 that causes the total in C16 ro exceed 100% then I want data validation to alert the user and prevent the entry. I cannot figure out to do this. Any help is appreciated. Thanks!
If users enter a value in C4:C15 that causes the total in C16 ro exceed 100% then I want data validation to alert the user and prevent the entry. I cannot figure out to do this. Any help is appreciated. Thanks!
Book1 | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | ||||||
2 | ||||||
3 | ||||||
4 | Jan | 5% | ||||
5 | Feb | 6% | ||||
6 | Mar | 7% | ||||
7 | Apr | 4% | ||||
8 | May | 3% | ||||
9 | Jun | 9% | ||||
10 | Jul | 4% | ||||
11 | Aug | 6% | ||||
12 | Sep | 8% | ||||
13 | Oct | 9% | ||||
14 | Nov | 4% | ||||
15 | Dec | 1% | ||||
16 | Total | 66% | ||||
17 | ||||||
18 | ||||||
19 | ||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C16 | C16 | =SUM(C4:C15) |