How to prevent a user entering a word if the number of occurrences of the word in a column already exceeds five?
In other words, how to put a limit on word occurrences?
How to prevent a user entering a word if the number of occurrences of the word in a column already exceeds five?
In other words, how to put a limit on word occurrences?
If the relevant column is D
, select it, Data, Validation..., Cell range: D:D, Criteria: Custom formula is
=countif(D$1:D1,D1)<6
On invalid data: Reject input, Save.