Mel asks: Is there a way to remove multiple (900) hyperlinks? I would like to retain the data, but not have it as a hyperlink. I would also like to accomplish in groups or all at once, rather then individually.
In Excel 2002: Highlight all the cells. Right click, select hyperlink from the pop-up menu. Click the Remove button.
In Excel 2000 they did not offer this functionality. You could do it with VBA: Sub RemoveHyperLinks() Range("A2:A999").Hyperlinks.Delete End Sub
For info about entering a VBA macro, see this page.
By Bill Jelen on 18-Apr-2002
MrExcel.com Consulting can be hired to implement this concept, or many other cool applications, with your data.
MrExcel.com provides examples of Visual Basic procedures for illustration only, without warranty either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. The Visual Basic procedures on this web site are provided "as is" and we do not guarantee that they can be used in all situations.
|