Written by Allen Wyatt (last updated February 22, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and 2021
You probably already know that Excel allows you to create hyperlinks to other Excel workbooks. If you create a workbook that uses the pound sign (#) in the file name, Excel has no problem with that. It will have a problem, however, if you try to create a hyperlink that references a workbook with a pound sign in the file name.
The reason for this is because the pound sign is a valid character for a file name, but it is not a valid character for use in a hyperlink. Since hyperlinks are closely related to URLs, you may think that replacing the pound sign with its hexadecimal equivalent (%23) in the hyperlink might do the trick. For instance, you might use the name My%23File.xlsx in the hyperlink instead of My#File.xlsx. This potential solution won't work, however. Excel still complains that it cannot find the file when you click on the hyperlink.
According to Microsoft sources, there are only two potential solutions. The first is to rename the target workbook so it doesn't include the pound sign in the file name. If this is not possible, then the second solution is to create a hyperlink by pasting instead of by using the Insert Hyperlink command. Follow these steps:
Your hyperlink appears, complete with the pound sign, and it will work.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12572) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Excel here: Special Characters In Hyperlinks.
Program Successfully in Excel! This guide will provide you with all the information you need to automate any task in Excel and save time and effort. Learn how to extend Excel's functionality with VBA to create solutions not possible with the standard features. Includes latest information for Excel 2024 and Microsoft 365. Check out Mastering Excel VBA Programming today!
When you copy information from a Web page and paste it into a worksheet, you can end up with more than you bargained for. ...
Discover MoreNeed a quick link within a document to some external data? You can paste information so that Excel treats it just like a ...
Discover MoreExcel should allow you to both add and remove hyperlinks in a worksheet. If you run into problems removing hyperlinks, ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2022-04-13 13:00:05
J. Woolley
I guess newer versions of Excel have (partially) addressed this issue. To open My#File.xlsx with an Excel Ctrl+K hyperlink, enter the following Address:
My%23File.xlsx
but do NOT enter the following Address:
[My%23File.xlsx]
You can also use the HYPERLINK function with either link_location:
=HYPERLINK("My%23File.xlsx")
=HYPERLINK("[My%23File.xlsx]")
Square brackets are useful (but unnecessary) if the filename has special characters like space, exclamation, or apostrophe (but not hash).
The Tip fails to explain why Excel treats hash (#) as a special character in hyperlinks. It is used to separate Hyperlink.Address from Hyperlink.Subaddress, where the first references an Excel workbook and the second references a cell or a range or a name or a worksheet plus a cell or a range or a name. The HYPERLINK function does not create a Hyperlink object, but the following examples apply:
=HYPERLINK("My%23File.xlsx#A1")
=HYPERLINK("My%23File.xlsx#A1:B2")
=HYPERLINK("My%23File.xlsx#MyName")
=HYPERLINK("My%23File.xlsx#'Sheet1'!A1")
=HYPERLINK("My%23File.xlsx#'Sheet1'!A1:B2")
=HYPERLINK("My%23File.xlsx#'Sheet1'!MyName")
Apostrophes are necessary only if the worksheet name has special characters like hash, space, exclamation, apostrophe (must double like 'Sheet''1'), or quotation (must double like 'Sheet""1' if within quoted text).
The hash character can also be used in a hyperlink to open an Excel VBA procedure in the Visual Basic Editor (VBE):
=HYPERLINK("?#MyProc")
Or to run a VBA procedure:
=HYPERLINK("?#MyFunc(2*3.14)")
The question mark (?) character references the current workbook. MyFunc must be a Function returning Range:
Function MyFunc(arg) as range
...
Set MyFunc = Selection
Exit Function
My Excel Toolbox includes the SuperLink function (a superior substitute for HYPERLINK) and the UseSuperLink.pdf document.
See https://sites.google.com/view/MyExcelToolbox
2022-04-12 14:08:32
Christian
Thank you for the tip. Much appreciated.
2018-03-17 23:11:25
Alex B
Its is just bizarre that with an identical Hyperlink dialogue box in MS Outlook and MS Excel, the # works in Outlook but not in Excel.
I have found one other way of doing this.
Using the Hyperlink formula, adding file:/// to the front and replacing the # with the %23
=HYPERLINK("file:///C:\Users\USERNAME\Documents\My%23File.xlsx","My#File")
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments