Forum Discussion
neeesz78
Jul 04, 2022Copper Contributor
SharePoint List - number column restrict values
Hello All , We've SharePoint LIST column (Number) , 1 decimal , Min Value is 1 , Max Value 3 I want to restrict users from entering values other than these 5 below 1 1.5 2 2.5 3 is...
- Jul 05, 2022
neeesz78 Use this column validation formula:
=OR([NumberCol]=1,[NumberCol]=1.5,[NumberCol]=2,[NumberCol]=2.5,[NumberCol]=3)
Where [NumberCol] is name of your number column.
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.
ganeshsanap
Jul 05, 2022MVP
neeesz78 Use this column validation formula:
=OR([NumberCol]=1,[NumberCol]=1.5,[NumberCol]=2,[NumberCol]=2.5,[NumberCol]=3)
Where [NumberCol] is name of your number column.
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.
- neeesz78Jul 05, 2022Copper Contributor