Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / productivity / SharePoint / SharePoint2010

SharePoint Number Column Without Commas

5.00/5 (2 votes)
14 Nov 2012CPOL 35.2K  
Avoiding thousand separator(comma) in SharePoint Number field

Introduction

SharePoint number fields have thousand separators(comma) which we may not need every time. But there is no possibility of avoiding the thousands separator(comma) in the number fields. 

Using the Code

To avoid this comma, we can do a small working as given below.  

Suppose our Number field is named as "Student No."  Create another Calculated column and name it as "Student Number".  Then you have to type the formula according to the following format:

SQL
= TEXT( Number_Column_Name, "0")   

And click Save.

In our scenario, it will show as:

SQL
=TEXT([Student No],"0") 

Note: If the Student No field will be empty, the value will be shown as "0".... Or if you want to keep it blank, you have to adjust the formula as: 

SQL
=IF( [Student No] <>"",TEXT( [Student No] ,"0"),"")

Points of Interest

Here is a small working, but no one really notices it. Hope this will help all of you who are looking for something like this. [I have published the original article in my blog before (Link)] 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)