Jun 25, 2020 04:45 PM
I am looking to create a button that will dial a number in a separate field with Ring Central.
The URL I have for a standard dial is “rcmobile://call?number=+16194039535” however I’m not sure how to specify that instead of the number I want it to dial the number that is shown in the {Phone Number} field.
I’ve tried various combinations at this point. Any suggestions?
Solved! Go to Solution.
Jun 25, 2020 05:05 PM
In the “URL formula” section, just concatenate(&
) the first part of your URL string with the contents of your {Phone Number}
field, like this:
'rcmobile://call?number=+' & {Phone Number}
Jun 25, 2020 05:05 PM
In the “URL formula” section, just concatenate(&
) the first part of your URL string with the contents of your {Phone Number}
field, like this:
'rcmobile://call?number=+' & {Phone Number}
Jun 25, 2020 05:07 PM
Perfect. Thank you for your help!