Hyperlink Help

GregDCBA

New Member
Joined
Aug 30, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hyperlink Help

I am trying to populate a working Hyperlink from a list on a separate sheet using the XLOOKUP and HYPERLINK functions. The formula I am using is

=HYPERLINK(XLOOKUP($B8,'Course List'!$B$2:$B$10,'Course List'!$D$2:$D$10))

Everything populates OK, even as a hyperlink. However when clicking on the Hyperlink it does not work, it seems like it is referencing the actual cell on the “Course List” sheet and not the true web address.

I know it can be done, but I can not find anywhere showing a similar formula I need to use.

Is there a Guru out there that can show me the formula I need to use to make this work

Thanks
 

Attachments

  • Excel3.jpg
    Excel3.jpg
    196.1 KB · Views: 8

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Although the address to, for example, www.microsoft.com on the 'Course list' tab works if you click it, Excel is making the assumption there is an https:\\ in front to make it work. The =HYPERLINK formula, on the other hand, is just transferring the text from D8 without the https:\\, so you need to add it.
You can do that in one of two places
  • On the course list page: https:\\www.microsoft.com
  • As part of the formula: =HYPERLINK(XLOOKUP(B8,'Course List'!B2:B10,"https:\\" & 'Course List'!D2:D10))
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top