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)
codingpebble
Dec 22, 2023Copper Contributor
I solved this using validation:
=IF([Number Column] = ROUND([Number Column], 0), true, false)
=IF([Number Column] = ROUND([Number Column], 0), true, false)