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
vino1.395228003587918E12vino1.395228003587918E12 

Fetching currency value from database and store into salesforce Currency Field

Hi,

I have one currency column in MS Access.

I am fetching the value from database. But i didnt update in Salesforce.

How Can i do this?

updateacc.X1_month__c=Double.Parse(row["Month1"].ToString(),NumberStyles.Currency );

SaveResult[] saveResults = sfdcbind.update(new sObject[] { updateacc });
Best Answer chosen by vino1.395228003587918E12
vino1.395228003587918E12vino1.395228003587918E12
I solved myself
i just add

updateacc.X1_month__cSpecified = true;