Changing the price format

My Webhook sends the value of 1000 in fact it is 10 euros (10.00) I send the data from my application via make to airtable. In no way am I able to configure the correct value.

How can I do this? It’s basically about placing the comma in the right place but I don’t know how to do it.

I tried to do it through the parseNumber and formatNumber functions but nothing worked for me.

Welcome to the Make community!

It’s just basic math. You can convert cents to dollars by dividing by 100.

Then, to display it in euro format, you need to use the built-in function formatNumber

2 Likes