How to make a Phone field clickable in Power Apps Canvas apps?

This blog post is rather going to be a short and sweet. One of the most common requirements you may come across.

How do I make a mobile number clickable in Power Apps Canvas apps?

I have form with a text input for mobile number. The idea is to open the phone app to dial when the phone icon is clicked.

Phone field clickable in Power Apps Canvas Apps

It’s actually pretty easy. A small trick is all you need.

OnSelect of the Phone icon, use the following code.

Set(phNumber, "tel:" & txtPhoneNumber.Text);
Launch(phNumber);

Well that’s it. Now when you click the phone icon, the app will redirect you to your default calling app.

Simple and yet useful I guess.

Hope this helped!

You might also like the below posts.

Debajit Dutta
Business Solutions MVP

1 thought on “How to make a Phone field clickable in Power Apps Canvas apps?”

Comments are closed.