Displaying links in search box

trick247

New Member
Joined
Feb 21, 2022
Messages
4
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Hi all,

I have added a search box to my table which allows me to search the data in my database. However, there are hyperlinks in my data base which it does not display. Is there anyway to display clickable hyperlinks within my search?

This is currently what I'm using:

Excel Formula:
=FILTER(Table1,(ISNUMBER(SEARCH(B10,Table1[Record Number])))+(ISNUMBER(SEARCH(B10,Table1[Title]))) +(ISNUMBER(SEARCH(B10,Table1[Type])))+(ISNUMBER(SEARCH(B10,Table1[Description])))+(ISNUMBER(SEARCH(B10,Table1[Lead/Support])))+(ISNUMBER(SEARCH(B10,Table1[Link])))+(ISNUMBER(SEARCH(B10,Table1[Status]))),"No Records Found")[/CODE][/CODE]
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Not that I'm aware of.
Are you searching every column in your table with that formula?
 
Upvote 0
Yes I am! The table has a link column, but when it appears in the search box it only has text
 
Upvote 0
In that case you can shorten the formula like
Excel Formula:
=FILTER(Table1,MMULT(--(ISNUMBER(SEARCH(B10,Table1))),SEQUENCE(COLUMNS(Table1),,,0))>0,"No records found")
but hyperlinks will not work.
 
Upvote 0

Forum statistics

Threads
1,215,040
Messages
6,122,806
Members
449,095
Latest member
m_smith_solihull

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