Input Mask for International telephone numbers E.164 standard

Hey @GREDDIE, the phone field will automatically remove spaces and “+” characters, as you’ve already discovered.

In this case, I recommend using a Text Field to hold the phone number and to make the phone number clickable; I would suggest using an Equation Field to convert it into a hyperlink. This will provide a seamless user experience and allow for easy access to the phone number.

For example, below, you can see I have a Text Field called “Phone Text” and an Equation next to it called “Text to Clickable Phone Link”. The Equation is as follows:
CONCAT('<a href="tel:',{Phone Text},'">',{Phone Text},'</a>')
image