Open
Description
Simple formula
IF(Indicator__c, 0 - Total__c, Total__c)
Is producing an incorrect result. It is prefixing Total__c
field with a 0, e.g. Account.0Total__c
Steps to reproduce:
import parse from 'forcemula';
const { json: { customFields} } = parse({
parentObject: "Account",
formula: "IF(Indicator__c, 0 - Total__c, Total__c)"
});
Current Behaviour:
customFields are returned as:
[ 'Account.Indicator__c', 'Account.0Total__c' ]
Expected Behaviour:
customFields should be:
[ 'Account.Indicator__c', 'Account.Total__c' ]
Metadata
Metadata
Assignees
Labels
No labels