Salesforce Formula to identify if the number is Odd or Even #inSalesforce

Salesforce Formula to identify if the number is Odd or Even #inSalesforce


Suppose there is a Number field named SampleNumber.

Formula to identify if the SampleNumber is Even or Odd number

IF(MOD(SampleNumber__c, 2) = 0, 'EVEN' , 'ODD')



Visual: https://www.youtube.com/watch?v=dTq3wdjx21E

Comments