Hi I am using make to transfer data from a WIX form to a monday.com item.
the error is with the phone number.
monday uses 2 cells for phone number and this is how i used it on wix.
Hi I am using make to transfer data from a WIX form to a monday.com item.
the error is with the phone number.
monday uses 2 cells for phone number and this is how i used it on wix.
Looks like your phone number has spaces, when the label says “digits only”.
You need to use the replace function to remove the non-digits,
\D
in a regular expression pattern means anything that is not a digit.
e.g.:
{{ replace(1.phone; "/\D+/g"; emptystring) }}
Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —
parseDate
| Tokens for formatDate
samliew – request private consultation
Join the unofficial Make Discord server to chat with other makers!
Hi, Thank you for the feedback.
I ran some tests and for sure the capturing is without space. I think that when the phone number is captured without a 0 it will trigger the error. So strange.
hi @Asaf_Magen,
Have you tried to validate the phone number with the Phone Number module first? https://www.make.com/en/help/apps/built-in-apps/phone-number
So 1) validate, 2) format, 3) pass it to Monday.com
Cheers,
Henk
Hey @Asaf_Magen
Monday module accepts phone number as string value. If you don’t know the country code, then you should wrap up the value with toString() function. But as I see that you have country code in your data. You need to use “phone number” module (that is completely free and doesn’t require any connection) and map the value in E.164 format from “phone number” module as shown in below image.
Regards,
Msquare Automation - Gold Partner of Make
Visit us here | Youtube Channel
Looks like this is solving it. Is it restricting issues with adding a zero before the local number?