Removing HTML from EXCEL?

C

Crackles McFarly

Downloaded some HTML spreadsheets from a webpage. I cannot seem to rid
those LINKS from it inside EXCEL. Is their some shortcut to doing
this?

If not, I have MANY hours ahead of me, thank you very much....
 
B

Boris

Downloaded some HTML spreadsheets from a webpage. I cannot seem to rid
those LINKS from it inside EXCEL. Is their some shortcut to doing
this?

If not, I have MANY hours ahead of me, thank you very much....

Very simple! Use this subroutine:

---
Sub RemoveLinks()
Dim H As Hyperlink

For Each H In ActiveSheet.Hyperlinks
H.Delete
Next
End Sub
 
C

Crackles McFarly

Very simple! Use this subroutine:

---
Sub RemoveLinks()
Dim H As Hyperlink

For Each H In ActiveSheet.Hyperlinks
H.Delete
Next
End Sub
---

Regards,

B.


Please humor me some more, where do I place such "code"?
 
B

Boris

Please humor me some more, where do I place such "code"?

Huh...

1) Tools / Macro / Visual Basic Editor (or simple Alt+F11)
2) When in editor, Insert / Module
3) Paste code
4) File / Close and return to Microsoft Excel (Alt-Q)

Call the subroutine with Alt-F8, select RemoveLinks and click on Run
button.

If you don't want to have any macro related warnings after you save the
file, go back to Visual Basic Editor and choose File / Remove Module1 (or
some other module name if you changed it).

:)

B.
 
C

Crackles McFarly

Huh...

1) Tools / Macro / Visual Basic Editor (or simple Alt+F11)
2) When in editor, Insert / Module
3) Paste code
4) File / Close and return to Microsoft Excel (Alt-Q)

Call the subroutine with Alt-F8, select RemoveLinks and click on Run
button.

If you don't want to have any macro related warnings after you save the
file, go back to Visual Basic Editor and choose File / Remove Module1 (or
some other module name if you changed it).

:)

B.


WOW talk about hard ;-)

One missed step and WHAM!

Thanks for the detailed baby steps!

Have a nice evening!
 
B

Boris

WOW talk about hard ;-)

One missed step and WHAM!

Thanks for the detailed baby steps!

Have a nice evening!

Sorry if I've missed anything by accident - I had to translate most of the
menus from Croatian to English :)

BTW. There are only necessary steps - nothing critical would happen if you
miss any of all FOUR steps :)

B.
 
C

Crackles McFarly

Sorry if I've missed anything by accident - I had to translate most of the
menus from Croatian to English :)

BTW. There are only necessary steps - nothing critical would happen if you
miss any of all FOUR steps :)

B.


LOL, I am native English. I could BARELY translate a few lines of
Spanish to you with a gun to my head.

I'll be sure to send you a labor day card next year, made by hand ;-)
 
P

Pete_UK

I like the approach that I first saw in a reply by Dave Peterson.
Select all the cells with the hyperlinks (if you have just pasted them
in to your sheet then they will already be highlighted).

Then press Alt-F11 to bring up the Visual Basic Editor.
Then press CTRL-G to go into the Immediate Window.
Then type:
selection.hyperlinks.delete (Enter)

Hey presto! They've all gone. Close the VBE window to get back to your
sheet.

Hope this helps.

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top