Hello everyone,
does anyone have any idea how I can read the type of phone number from the contacts?
The idea behind it:
I want to create a whatsapp button in the contact entity, but only if the phone number is a cell phone number.
If it is a cell phone number, then a formula should write the link in the button.
If it is another number, e.g. a landline number, then it should not write anything.
I use the link button extension from Kharg .
With this formula it only writes the first number:
ifThenElse(phoneNumber != null, whatsapp=string\concatenate('https://wa.me/', phoneNumber), whatsapp = null);
does anyone have any idea how I can read the type of phone number from the contacts?
The idea behind it:
I want to create a whatsapp button in the contact entity, but only if the phone number is a cell phone number.
If it is a cell phone number, then a formula should write the link in the button.
If it is another number, e.g. a landline number, then it should not write anything.
I use the link button extension from Kharg .
With this formula it only writes the first number:
ifThenElse(phoneNumber != null, whatsapp=string\concatenate('https://wa.me/', phoneNumber), whatsapp = null);
Comment