function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SidharthSidharth 

Can't set NULL value to Number Field

Hello

 

I have a Number field "Remaining_Occurrences__c" (not required, not unique)

 

If i try to put NULL value in it via Apex Data loader, it still shows the previous value.

 

I checked my Enterprise WSDl, and the property of this field is Nillable = true.

 

Any idea how can i set NULL value to the field?

 

Thanks

Sid

Best Answer chosen by Admin (Salesforce Developers) 
sbbsbb

I think there is a setting in the Data Loader itslef for allowing NULL value inserts. Did you try that?

All Answers

sbbsbb

I think there is a setting in the Data Loader itslef for allowing NULL value inserts. Did you try that?

This was selected as the best answer
SidharthSidharth

Excellent. Thanks it worked for Data loader.

But we have other application (written in C#) which modify our data. So i think I need to find similar kind of property(insert null values) in that C# app too.

If you already know some, please let me know.

 

thanks

Sid