Hello!
I am using Excel version 1808 on a Windows 10 computer.
I have the document set up so if, for example, a user types "John" in cell A1, it pulls the phone number for "John" into cell A2. I have a list of names and numbers on a separate tab that is being referenced, and I'm using the INDEX and MATCH functions to complete this task.
Ultimately, this document becomes a PDF, and this is reused multiple times a day. What I am trying to achieve is that the phone number that the document pulls into cell A2 be hyperlinked, in a way that when I print to PDF (or save as PDF), the link still works. That way, if I view the file on my phone, I can just click the number to make a quick call.
I know I can manually hyperlink the phone number each time by adding "tel:" in the hyperlink area, but I am hoping for a more streamlined approach. I tried using the HYPERLINK function along with CONCATENATE to make it so when the phone number comes in, it shows up as "tel:555-555-5555" in the cell and the hyperlink works while in excel, but it doesn't work once I print to PDF.
EXAMPLE:
I have also tried putting the hyperlink on the phone number in the list I'm pulling from, to see if it would pull in that way (but I should have known better, ha) and that didn't work.
I've tried searching this on Google every which way, and am stumped. Any help is much appreciated.
I am using Excel version 1808 on a Windows 10 computer.
I have the document set up so if, for example, a user types "John" in cell A1, it pulls the phone number for "John" into cell A2. I have a list of names and numbers on a separate tab that is being referenced, and I'm using the INDEX and MATCH functions to complete this task.
Code:
=INDEX(Reference!B1:B20,MATCH('Cover Sheet'!A1,Reference!A1:A20,0),0))
Ultimately, this document becomes a PDF, and this is reused multiple times a day. What I am trying to achieve is that the phone number that the document pulls into cell A2 be hyperlinked, in a way that when I print to PDF (or save as PDF), the link still works. That way, if I view the file on my phone, I can just click the number to make a quick call.
I know I can manually hyperlink the phone number each time by adding "tel:" in the hyperlink area, but I am hoping for a more streamlined approach. I tried using the HYPERLINK function along with CONCATENATE to make it so when the phone number comes in, it shows up as "tel:555-555-5555" in the cell and the hyperlink works while in excel, but it doesn't work once I print to PDF.
EXAMPLE:
Code:
=HYPERLINK(CONCATENATE("tel:",(INDEX(Reference!B1:B20,MATCH('Cover Sheet'!A1,Reference!A1:A20,0),0))))
I have also tried putting the hyperlink on the phone number in the list I'm pulling from, to see if it would pull in that way (but I should have known better, ha) and that didn't work.
I've tried searching this on Google every which way, and am stumped. Any help is much appreciated.