FaceTime instead of iPhone dial from Excel on iPhone
=HYPERLINK(CONCATENATE("TEL:",B2))
Entering dials in FaceTime. How do I change to just iPhone?
[Re-Titled by Moderator]
iPhone 12, iOS 18
=HYPERLINK(CONCATENATE("TEL:",B2))
Entering dials in FaceTime. How do I change to just iPhone?
[Re-Titled by Moderator]
iPhone 12, iOS 18
Gemini says:
The formula =HYPERLINK(CONCATENATE("TEL:", B2)) in Excel creates a hyperlink that, when clicked, initiates a call using the phone number in cell B2. However, this hyperlink defaults to using FaceTime for the call on an iPhone.
To change this use the default iPhone Voice Calls app instead of FaceTime: Modify the Hyperlink Formula: Replace the existing formula with: =HYPERLINK("tel:"&B2)
This simplified formula achieves the same result as the original CONCATENATE function.
Explanation:
By removing the unnecessary CONCATENATE function, you streamline the formula while maintaining the desired behavior of using the default iPhone Voice Calls app for outgoing calls.
Gemini says:
The formula =HYPERLINK(CONCATENATE("TEL:", B2)) in Excel creates a hyperlink that, when clicked, initiates a call using the phone number in cell B2. However, this hyperlink defaults to using FaceTime for the call on an iPhone.
To change this use the default iPhone Voice Calls app instead of FaceTime: Modify the Hyperlink Formula: Replace the existing formula with: =HYPERLINK("tel:"&B2)
This simplified formula achieves the same result as the original CONCATENATE function.
Explanation:
By removing the unnecessary CONCATENATE function, you streamline the formula while maintaining the desired behavior of using the default iPhone Voice Calls app for outgoing calls.
FaceTime instead of iPhone dial from Excel on iPhone