Removing HTML "checkbox" from Excel

D

daydd

I received a spreadsheet that had data copied from a website. It has
"checkboxes" that I cannot get rid of. I have tried right clicking and then
deleting, deleting columns, coping the sheeting into an new workbook, and
they will not go away. Is there a way to make them go away? Thank you.
 
D

Don Guillett

Try one of these

Sub DeleteSheetDrawingObjects()
ActiveSheet.DrawingObjects.Delete
ActiveWorkbook.Save
End Sub

Sub shapescut1() 'Tom Ogilvy
ActiveSheet.Shapes.SelectAll
Selection.Delete
End Sub
 
D

daydd

Thank you for the suggestion. I just have one more question for you. Where in
Excel do I insert this information? I am not able to right click on the box.
Unfortunately, we have Office 2007 and it is not as user friendly as XP was.
 
B

Bob I

They are macros, Alt+F11 will open the VB editor
Thank you for the suggestion. I just have one more question for you. Where in
Excel do I insert this information? I am not able to right click on the box.
Unfortunately, we have Office 2007 and it is not as user friendly as XP was.


:
 
M

Mike Trask

This was a great solution and worked in seconds ... once I found it :)

MT



Don Guillett wrote:

Try one of theseSub DeleteSheetDrawingObjects() ActiveSheet.DrawingObjects.
13-Nov-08

Try one of thes

Sub DeleteSheetDrawingObjects(
ActiveSheet.DrawingObjects.Delet
ActiveWorkbook.Sav
End Su

Sub shapescut1() 'Tom Ogilv
ActiveSheet.Shapes.SelectAl
Selection.Delet
End Su
--
Don Guillet
Microsoft MVP Exce
SalesAid Softwar
(e-mail address removed)

Previous Posts In This Thread:

Removing HTML "checkbox" from Excel
I received a spreadsheet that had data copied from a website. It has
"checkboxes" that I cannot get rid of. I have tried right clicking and then
deleting, deleting columns, coping the sheeting into an new workbook, and
they will not go away. Is there a way to make them go away? Thank you.

Try one of theseSub DeleteSheetDrawingObjects() ActiveSheet.DrawingObjects.
Try one of thes

Sub DeleteSheetDrawingObjects(
ActiveSheet.DrawingObjects.Delet
ActiveWorkbook.Sav
End Su

Sub shapescut1() 'Tom Ogilv
ActiveSheet.Shapes.SelectAl
Selection.Delet
End Su
--
Don Guillet
Microsoft MVP Exce
SalesAid Softwar
(e-mail address removed)

Thank you for the suggestion. I just have one more question for you.
Thank you for the suggestion. I just have one more question for you. Where in
Excel do I insert this information? I am not able to right click on the box.
Unfortunately, we have Office 2007 and it is not as user friendly as XP was.

:

Re: Removing HTML "checkbox" from Excel
They are macros, Alt+F11 will open the VB edito

daydd wrote:

Re: Removing HTML "checkbox" from Excel
Thank you. :-

:

Re: Removing HTML "checkbox" from Excel
You're welcome, but Don did the hard part

daydd wrote:


Submitted via EggHeadCafe - Software Developer Portal of Choice
File-Based Cache for Web and non-Web Apps plus Extend ASP.NET 4.0 OutputCacheProvider
http://www.eggheadcafe.com/tutorial...dfe-9f7a28f4d58e/filebased-cache-for-web.aspx
 

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