Removing $ from values

Hi Everyone,

I am getting data through a webhook from our HRIS and attempting to send it to Salesforce. I think I am getting an error on the format of the currency sign and commas in the values. In SF they are all currency fields with 2 decimal points. I have tried formatNumber but had no luck. Any insights will be helpful. Thanks in advanced.

Data from webhook:

Error:

You can use parseNumber function.

parseNumber(number; decimal separator)

Thanks! That might of worked but I am getting this error now if you have insights on that.

You need to format the date before using in Salesforce module, Try,

parseDate(date;M/D/YY)

1 Like

That worked. THANK YOU SO MUCH!