Click to Call?

Options

I found a post similar to this that was asked in 2017 but it didn't have a solution. Thus I'm asking again, say you have a Domo card that displays a column containing U.S. phone numbers. Is it possible for the user to just click on the phone number and it would automatically dial the number using their default phone dialing program?

Best Answer

  • ColemenWilson
    edited October 2023 Answer ✓
    Options

    Yep!

    1. Create a beastmode:
      1. CONCAT('<a href="tel:', `yourPhoneNumberField`, '">,`yourAnchorText`,'</a>')
    2. Use it as a field in a table card

    If I solved your problem, please select "yes" above

Answers

  • ColemenWilson
    edited October 2023 Answer ✓
    Options

    Yep!

    1. Create a beastmode:
      1. CONCAT('<a href="tel:', `yourPhoneNumberField`, '">,`yourAnchorText`,'</a>')
    2. Use it as a field in a table card

    If I solved your problem, please select "yes" above

  • Thank you so much @ColemenWilson ! Your solution worked!