SOLVED

Sharepoint Column Validation

Copper Contributor

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!

1 Reply
best response confirmed by as733y (Copper Contributor)
Solution

@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.