Hello,
I have applied range validation for numerical type data it's working until i'm entering single record but it's not working when i'm paste multiple record it's not validating please give me any solution.Thank you
sheetForRootCause.range("G2:G300").validation({
dataType: "number",
from: "1899",
to: "2050",
comparerType: "between",
allowNulls: true,
type: "reject",
titleTemplate: "Year validation error",
messageTemplate: "Year should be between 1899 and 2050 year."
});