Hello everyone,
I am looking for help to make this task code work in my workflow. Essentially, I would like to convert one of the embedded field (ARR) to a number format. As of now, the value that comes from this field in SFDC is getting displayed as a plain number (no decimals or thousands 111,222).
This is the code I built, but when adding to the slack notification, I dont get any result. Any thoughts here?
const ARR = ${e://Field/ARR};
function codeTask(ARR) {
const numberARR = Number(ARR);
return {
result: numberARR
};
}
const result = codeTask(ARR);
