as733y
Jun 16, 2022Copper Contributor
Sharepoint Column Validation
Hello,
I'm trying to find a Formula in Column Validation that only allows the user to enter a number or certain letters (Q, V, Sa, Su).
Can anyone direct me? Thank you!
as733y Try using column validation formula like:
=OR(ISNUMBER(MyCustomCol+0),MyCustomCol="Q",MyCustomCol="V",MyCustomCol="Sa",MyCustomCol="Su")
Where MyCustomCol is the name of same column where this formula is added.
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.