clearing pictures copied from websites

B

Boe

Hello,

I posed this question a couple of years ago and someone helped by providing
a macro which I unfortunately lost. I often create spreadsheets with prices
I copy from pricewatch.com. I want to keep the product image but I want to
get rid of the buy now button. I can't delete that row or column - the
image remains.

Thanks
 
G

Guest

I think this will work for you:

Tools>Customize>Toolbars tab>Check: Control Toolbox
Click the Design Mode icon on that toolbar
Then, just click on the offending button and press [Delete]
When done, turn off design mode

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 
D

Dave Peterson

Try showing the Control Toolbox toolbar (View|toolbars)
then click the design mode icon
then rightclick on the button and hit delete
then toggle the design mode button to off.
 
B

Boe

Thank you!!

Dave Peterson said:
Try showing the Control Toolbox toolbar (View|toolbars)
then click the design mode icon
then rightclick on the button and hit delete
then toggle the design mode button to off.
 
D

Don Guillett

Assuming that the product picture is picture 1 (determine by selecting and
looking in name box, then this should do it.

Sub ShapesCut()
For Each S In ActiveSheet.Shapes
If S.Name <> "Picture 1" Then S.Cut
Next
End Sub
 
B

Boe

All set - thanks!

Ron Coderre said:
I think this will work for you:

Tools>Customize>Toolbars tab>Check: Control Toolbox
Click the Design Mode icon on that toolbar
Then, just click on the offending button and press [Delete]
When done, turn off design mode

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro


Boe said:
Hello,

I posed this question a couple of years ago and someone helped by
providing
a macro which I unfortunately lost. I often create spreadsheets with
prices
I copy from pricewatch.com. I want to keep the product image but I want
to
get rid of the buy now button. I can't delete that row or column - the
image remains.

Thanks
 
B

Boe

All set - thanks!

Don Guillett said:
Assuming that the product picture is picture 1 (determine by selecting and
looking in name box, then this should do it.

Sub ShapesCut()
For Each S In ActiveSheet.Shapes
If S.Name <> "Picture 1" Then S.Cut
Next
End Sub
 

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