Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

How do I create click to dial phone numbers from a Phone Number field in my table

Topic Labels: Automations Formulas
Solved
Jump to Solution
19314 12
cancel
Showing results for 
Search instead for 
Did you mean: 
remekoh
5 - Automation Enthusiast
5 - Automation Enthusiast

So I have a Phone Number field containing phone numbers in this format: (123) 456-7890, and I want to automatically convert those numbers to links so that users can click on them to dial.

12 Replies 12
remekoh
5 - Automation Enthusiast
5 - Automation Enthusiast
Phone Number FieldFormula field with above formula
(123) 456-7890<a href="tel:(123) 456-7890">(123) 456-7890</a>
Mike_Shaw1
6 - Interface Innovator
6 - Interface Innovator

It is not working for me, where are the links appearing for the users to click? in a gridview or interface?

abd
4 - Data Explorer
4 - Data Explorer
  1. 'Determine the RowIndex of the Row whose LinkButton was clicked. Dim rowIndex As Integer = Convert.ToInt32(e.CommandArgument)
  2. 'Reference the GridView Row. Dim row As GridViewRow = GridView1.Rows(rowIndex)
  3. 'Fetch value of Name. ...
  4. 'Fetch value of Country.