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
MaggieSumitMaggieSumit 

Getting Error msg on report. When win rate and Account value is null

IF(OR(NOT(ISNULL(Win_Rate_Value__c)),NOT(ISNULL(Amount))),(Win_Rate_Value__c / Amount) , 00)

User-added image
Steve LoudermilkSteve Loudermilk
if(AND(NOT(ISNULL(Amount),Amount<>0),(Win_Rate_Value__c / Amount),00)

I believe something like this would do it. This way you never get a 0 or a null in the divisor