Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!.
Score of 10
Accepted

How to create URL link to the specific section of the PDF file?

Strictly speaking, what is usually referred to as chapters or sections inside a PDF, are bookmarks. According to Adobe's Parameters for Opening PDF Files, there are only two official ways of opening a ...
Score of 10

Can you update WhatsApp's link previews?

I've found that adding random text to the end of the hyperlink clears the cache. so: https://yoursite.com/?876564 Also, make sure you have flushed your site cache before.
Score of 7

Hyperlink to a specific text in a webpage

The syntax for this kind of "find-in-page" hyperlink is: https://example.com/index.html#:~:text=the%20text (urlencoding spaces as %20, not +; and case-insensitive). For example: this link ...
Score of 7

Hyperlink within Word Document requires Ctrl+Click to activate

CTRL + Click is the normal convention for any Microsoft product when the file is in Editing mode. You'll see when then you're writing an email, when you're creating a document or spreadsheet, etc. ...
Score of 6

Hyperlinking a piece of text in Excel

OK, this a solution to this old question but it's not one that I would personally use. It's a cheat. I have not seen a single method with code or in the UI that allows HTML or RTF to fully render in a ...
Score of 6

Automatically hyperlink-ify large number cells containing URLs in Excel 2010

so I found a cheat method to this question, I had the same problem, needed to turn about 4000 cells into hyperlinks I copied and pasted the entire column into a google sheet, the gsheet automatically ...
Score of 6
Accepted

Hyperlink to a specific text in a webpage

Recently Google added this feature in Chrome. The steps are: select the text; right click on it; select Copy link to highlight.
Score of 6
Accepted

Is it possible to create a file that acts as a hyperlink to a website?

There actually is a solution, that is universal across OSes. If I understand correctly, all you need is a file that when clicked in any popular OS, will open a link to a particular webpage in the ...
Score of 6
Accepted

Can I create an external http link to a section of a Word document shared on OneDrive?

This can only be done in the web version of Word. To accomplish this, you can add a heading and then right click on that heading and select "Copy Link to Heading" (see image below). There is ...
Score of 5
Accepted

Quickest Way To Inset a Link Into an Outlook Message

Drag and drop the file on the network share with the right mouse button. Release within the body of the message and click Create Hyperlink Here As a bonus, the hyperlink will be created with the UNC ...
Score of 5
Accepted

Excel online: link to specific row or cell

Link to Range The Link to this Range feature may do what you want. I was able to link to a specific cell with this, and the Excel file opened in the browser instead of in the app. Steps: Highlight ...
Score of 5

Links to Network Shares not opening in Outlook for Desktop for some users

Sounds like it could be related to the after installing the Outlook Desktop July 11th security updates. For machines that are affected, try adding those URLs to the Trusted Sites zone. Go to Windows ...
Score of 4

Extract URL from a cell having =Hyperlink() formula applied to it

There's no direct way of getting the URL from a cell with a hyperlink generated by a formula. You need to extract the first argument from the HYPERLINK() function, and manually evaluate it. This is ...
Score of 4
Accepted

How can I create my own QR codes for free?

libqrencode is a library and qrencode is a command line utility for encoding data in a QR Code symbol. I installed qrencode in my Kubuntu (from qrencode package) and successfully created a QR code as ...
Score of 4
Accepted

file hyperlink not working under tmux

It does not work because your version of tmux literally does not support hyperlinks. Hyperlink marking is something that must be handled by each terminal emulation layer – it cannot be simply passed ...
Score of 4

Why does the Snap install of Firefox opens links in background on Ubuntu?

In Firefox About:preferences search on link. Set When you open a link, image or media in a new tab, switch to it immediately BTW, you're not limited to using the Snap version of Firefox. If you ...
Score of 4
Accepted

How can I paste without formatting but while keeping links on Windows?

For me, the easiest is to use an app such as LibreOffice Writer (though I presume MS Word can do the same): In browser, select the area, or press CtrlA to select everything. Press CtrlC to copy to ...
Score of 3

Why do my hyperlinks in Excel change to a roaming folder?

Excel should never ever update a hyperlink on its own, no matter if the link works, is broken, if your saving location works or is broken. I propose the following fix: In Excel open the File menu and ...
Score of 3

How to create clickable hyperlinks in a skype message?

Same as GitHub / Reddit markup: [click here](www.example.com) (To clarify, example.com is not a link containing information about Skype markup; it is part of the markup example. I don't have a link ...
Score of 3

How to "unvisit" links in Chrome?

I'm not sure my solution would work for your purpose, but it works much better for me than deleting my browsing history every time I turn around. I have a lot of homemade documents on my desktop that ...
Score of 3

Can I use an excel formula to extract the link location of a hyperlink in a cell?

I had the same issue as @SAL I found that the .Hyperlink object actually splits the address into .Address and .SubAddress if it encounters a delimiter. "#" is one such delimiter (I don't ...
Score of 3

Can I use an excel formula to extract the link location of a hyperlink in a cell?

Open up a new workbook. Get into VBA with Alt+F11 (Fn + Opt + F11 for MAC) Insert a new module (Insert > Module) Copy and Paste the Excel user defined function below Press F5 and click “Run” Get ...
Score of 3

How do I link directly to a specific PART of a blog post or online article? (e.g. to a paragraph or heading)

In modern versions of Chrome, you can use this special anchor: #:~:text=ENCODED_TEXT_YOU_WANT_TO_LINK. https://www.howtogeek.com/658842/how-to-use-google-chromes-new-deep-linking-feature/
Score of 3
Accepted

How to enter text containing "[[" and "]]" in Microsoft OneNote without it creating and linking to a new page?

Easy: just Undo (Ctrl+Z) immediately after creation of the link Type df.iloc[[0, 12]] and then press Ctrl+Z. Your text is back. ...or produce ]] using the Paste command Put ] or ]] into the clipbard ...
Score of 3

Is it possible to create a file that acts as a hyperlink to a website?

There is no universal link file type. Existing mainstream file types for documents or information transfer will not support automated links because of the obvious security implications of such. Most ...
Score of 3

Is it possible to create a file that acts as a hyperlink to a website?

I think the most cross-platform way would be to deliver a html file. This would allow you to use -in a portable way- a number of tricks: You could embed your webpage in an <iframe> (it won't ...
Score of 3

How do I change the color and remove the underline of all hyperlinks in a Word document *without* changing the font, italization, etc.?

This way : In the Home pane, Styles group, click the small icon on the bottom-right of the group In the drop down menu, click Hyperlink > Modify… In the Modify window, click on the blue color ...
Score of 3

Excel online: link to specific row or cell

Instead of: =HYPERLINK("https://company.sharepoint.com/teams/folder/folder/folder/filename.xlsm#sheetname!a22") If the location is internal to your current workbook, then use: =HYPERLINK(&...
Score of 3
Accepted

Difference between hypertext, hyperlink and hypermedia?

From what I understand so far, hypertext is a text that can link to another resource and hyperlink is the actual link itself. Hypertext is text that is not structured linearly, but contains ...
Score of 3
Accepted

How can I open a specific website automatically in another web browser when clicking its link?

You can use Open In ... extension(s) for this purpose. They allow you to redirect all the opening attempts to another browser, here's e.g. a screenshot of a relevant Force Open rule setting from ...

Only top scored, non community-wiki answers of a minimum length are eligible