Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheetfunctions,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 49
Default Removing HTML from EXCEL?

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....


  #2   Report Post  
Posted to microsoft.public.excel.worksheetfunctions,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Removing HTML from EXCEL?

On Thu, 20 Sep 2007 16:44:05 -0400, Crackles McFarly wrote:

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
---

Regards,

B.
  #3   Report Post  
Posted to microsoft.public.excel.worksheetfunctions,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 49
Default Removing HTML from EXCEL?

On Thu, 20 Sep 2007 23:32:38 +0200, Boris sayd the
following:

On Thu, 20 Sep 2007 16:44:05 -0400, Crackles McFarly wrote:

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
---

Regards,

B.



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

  #4   Report Post  
Posted to microsoft.public.excel.worksheetfunctions,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Removing HTML from EXCEL?

On Thu, 20 Sep 2007 17:37:55 -0400, Crackles McFarly wrote:


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.
  #5   Report Post  
Posted to microsoft.public.excel.worksheetfunctions,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 49
Default Removing HTML from EXCEL?

On Thu, 20 Sep 2007 23:43:44 +0200, Boris sayd the
following:

On Thu, 20 Sep 2007 17:37:55 -0400, Crackles McFarly wrote:


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.



WOW talk about hard ;-)

One missed step and WHAM!

Thanks for the detailed baby steps!

Have a nice evening!




  #6   Report Post  
Posted to microsoft.public.excel.worksheetfunctions,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Removing HTML from EXCEL?

On Thu, 20 Sep 2007 17:49:03 -0400, Crackles McFarly wrote:

On Thu, 20 Sep 2007 23:43:44 +0200, Boris sayd the
following:

On Thu, 20 Sep 2007 17:37:55 -0400, Crackles McFarly wrote:


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.



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.
  #7   Report Post  
Posted to microsoft.public.excel.worksheetfunctions,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 49
Default Removing HTML from EXCEL?

On Thu, 20 Sep 2007 23:51:46 +0200, Boris sayd the
following:

On Thu, 20 Sep 2007 17:49:03 -0400, Crackles McFarly wrote:

On Thu, 20 Sep 2007 23:43:44 +0200, Boris sayd the
following:

On Thu, 20 Sep 2007 17:37:55 -0400, Crackles McFarly wrote:


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.



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.



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 ;-)


  #8   Report Post  
Posted to microsoft.public.excel.worksheetfunctions,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Removing HTML from EXCEL?

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


On Sep 20, 11:21 pm, Crackles McFarly wrote:
On Thu, 20 Sep 2007 23:51:46 +0200, Boris sayd the
following:





On Thu, 20 Sep 2007 17:49:03 -0400, Crackles McFarly wrote:


On Thu, 20 Sep 2007 23:43:44 +0200, Boris sayd the
following:


On Thu, 20 Sep 2007 17:37:55 -0400, Crackles McFarly wrote:


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.


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.


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 ;-)- Hide quoted text -

- Show quoted text -



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Stop excel from processing HTML? IE paste raw html. nick Excel Discussion (Misc queries) 2 April 21st 23 05:12 PM
html and excel Tim Excel Discussion (Misc queries) 0 January 13th 07 12:54 PM
Excel to Html Maurizio Excel Discussion (Misc queries) 0 June 26th 05 08:03 PM
html to excel nellie Excel Discussion (Misc queries) 4 February 8th 05 10:37 PM
HTML to Excel Billing Goddess Excel Discussion (Misc queries) 5 December 10th 04 05:11 PM


All times are GMT +1. The time now is 04:43 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"