Think about what a dropdown list validation does when you enter a valid option.
When you set a dropdown list validation with specific allowed values, entering one of those values is accepted without error.
Think about which validation type fits numbers and how to limit a range.
To restrict input to whole numbers between 1 and 10, use Number validation with Between condition and set min and max to 1 and 10.
Think about how to count occurrences of the current cell value in the whole column.
The formula =COUNTIF(C:C, C2)=1 checks if the value in C2 appears only once in the entire column, preventing duplicates.
Consider the difference between "Show warning" and "Reject input" options.
With "Show warning", invalid data is allowed but marked with a warning icon. "Reject input" would block it.
Think about how INDIRECT works with named ranges in data validation.
INDIRECT("Fruits") returns the range named "Fruits", so the dropdown shows those values.