Forum Discussion
codingpebble
Dec 22, 2023Copper Contributor
Unique Integer Colum in Sharepoint List
Hello, how can I get a column in a sharepoint List which is basically an editable ID. I tried using the number type and set the decimal to 0 and made it unique. That works if users only enter w...
- Dec 22, 2023I solved this using validation:
=IF([Number Column] = ROUND([Number Column], 0), true, false)
DaveMehr365
Dec 22, 2023MVP
Hello codingpebble
with this settings it's only possible to add whole numbers:
I have it not tested, but maybe it's also possible with column validation:
Best, Dave