A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Deleting cliparts in excel sheet



 
 
Thread Tools Display Modes
  #1  
Old June 2nd, 2010, 02:23 PM posted to microsoft.public.excel.misc
Karina
external usenet poster
 
Posts: 31
Default Deleting cliparts in excel sheet

I have an excel sheet in wich I paste everyday new information, replacing the
previous day information. There's a clipart that has been pasted over and
over, now the file is very slow and I can't erase all the cliparts
(thousands). In excel 2003 it was possible to select all the cliparts in one
step, now in 2007 I can't and it's impossible for me to erase the cliparts
one by one.

Please help!
  #2  
Old June 2nd, 2010, 02:52 PM posted to microsoft.public.excel.misc
Don Guillett[_2_]
external usenet poster
 
Posts: 607
Default Deleting cliparts in excel sheet

If desired, send your file to my address below. I will only look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
I have an excel sheet in wich I paste everyday new information, replacing
the
previous day information. There's a clipart that has been pasted over and
over, now the file is very slow and I can't erase all the cliparts
(thousands). In excel 2003 it was possible to select all the cliparts in
one
step, now in 2007 I can't and it's impossible for me to erase the cliparts
one by one.

Please help!


  #3  
Old June 2nd, 2010, 03:51 PM posted to microsoft.public.excel.misc
Karina
external usenet poster
 
Posts: 31
Default Deleting cliparts in excel sheet

Already sent you the file, thanks.

"Don Guillett" wrote:

If desired, send your file to my address below. I will only look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
I have an excel sheet in wich I paste everyday new information, replacing
the
previous day information. There's a clipart that has been pasted over and
over, now the file is very slow and I can't erase all the cliparts
(thousands). In excel 2003 it was possible to select all the cliparts in
one
step, now in 2007 I can't and it's impossible for me to erase the cliparts
one by one.

Please help!


.

  #5  
Old June 2nd, 2010, 09:48 PM posted to microsoft.public.excel.misc
Ron de Bruin
external usenet poster
 
Posts: 2,861
Default Deleting cliparts in excel sheet

Warning :
I suggest not to use code like this because it is possible that

It will delete the AutoFilter dropdowns
It will delete the DataValidation(List option) dropdowns
Excel crash if there are comments on the sheet

See this page for other code
http://www.rondebruin.nl/controlsobjectsworksheet.htm




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm



"Don Guillett" wrote in message ...
Sub NOSHAPES()' Removes ALL SHAPES
For Each WS In ThisWorkbook.Sheets
For Each SH In WS.Shapes
SH.Delete
Next SH
Next WS
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
Already sent you the file, thanks.

"Don Guillett" wrote:

If desired, send your file to my address below. I will only look
if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
I have an excel sheet in wich I paste everyday new information,
replacing
the
previous day information. There's a clipart that has been pasted over
and
over, now the file is very slow and I can't erase all the cliparts
(thousands). In excel 2003 it was possible to select all the cliparts
in
one
step, now in 2007 I can't and it's impossible for me to erase the
cliparts
one by one.

Please help!

.


  #6  
Old June 2nd, 2010, 11:43 PM posted to microsoft.public.excel.misc
Don Guillett[_2_]
external usenet poster
 
Posts: 607
Default Deleting cliparts in excel sheet

Ron, OP sent me the workbook which had none of these problems so I sent a
simple solution..

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Ron de Bruin" wrote in message
...
Warning : I suggest not to use code like this because it is possible that
It will delete the AutoFilter dropdowns
It will delete the DataValidation(List option) dropdowns
Excel crash if there are comments on the sheet

See this page for other code
http://www.rondebruin.nl/controlsobjectsworksheet.htm




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm



"Don Guillett" wrote in message
...
Sub NOSHAPES()' Removes ALL SHAPES
For Each WS In ThisWorkbook.Sheets
For Each SH In WS.Shapes
SH.Delete
Next SH
Next WS
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
Already sent you the file, thanks.

"Don Guillett" wrote:

If desired, send your file to my address below. I will only look
if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
I have an excel sheet in wich I paste everyday new information,
replacing
the
previous day information. There's a clipart that has been pasted over
and
over, now the file is very slow and I can't erase all the cliparts
(thousands). In excel 2003 it was possible to select all the cliparts
in
one
step, now in 2007 I can't and it's impossible for me to erase the
cliparts
one by one.

Please help!

.



  #7  
Old June 3rd, 2010, 06:21 PM posted to microsoft.public.excel.misc
Ron de Bruin
external usenet poster
 
Posts: 2,861
Default Deleting cliparts in excel sheet

Ok, but I would go for this to be sure

Sub Shapes1()
'Delete all Objects except Comments
On Error Resume Next
ActiveSheet.DrawingObjects.Visible = True
ActiveSheet.DrawingObjects.Delete
On Error GoTo 0
End Sub

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm



"Don Guillett" wrote in message ...
Ron, OP sent me the workbook which had none of these problems so I sent a
simple solution..

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Ron de Bruin" wrote in message
...
Warning : I suggest not to use code like this because it is possible that
It will delete the AutoFilter dropdowns
It will delete the DataValidation(List option) dropdowns
Excel crash if there are comments on the sheet

See this page for other code
http://www.rondebruin.nl/controlsobjectsworksheet.htm




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm



"Don Guillett" wrote in message
...
Sub NOSHAPES()' Removes ALL SHAPES
For Each WS In ThisWorkbook.Sheets
For Each SH In WS.Shapes
SH.Delete
Next SH
Next WS
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
Already sent you the file, thanks.

"Don Guillett" wrote:

If desired, send your file to my address below. I will only look
if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
I have an excel sheet in wich I paste everyday new information,
replacing
the
previous day information. There's a clipart that has been pasted over
and
over, now the file is very slow and I can't erase all the cliparts
(thousands). In excel 2003 it was possible to select all the cliparts
in
one
step, now in 2007 I can't and it's impossible for me to erase the
cliparts
one by one.

Please help!

.



  #8  
Old June 3rd, 2010, 06:35 PM posted to microsoft.public.excel.misc
Don Guillett[_2_]
external usenet poster
 
Posts: 607
Default Deleting cliparts in excel sheet

Good point

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Ron de Bruin" wrote in message
...
Ok, but I would go for this to be sure
Sub Shapes1()
'Delete all Objects except Comments
On Error Resume Next
ActiveSheet.DrawingObjects.Visible = True
ActiveSheet.DrawingObjects.Delete
On Error GoTo 0
End Sub

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm



"Don Guillett" wrote in message
...
Ron, OP sent me the workbook which had none of these problems so I sent a
simple solution..

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Ron de Bruin" wrote in message
...
Warning : I suggest not to use code like this because it is possible
that
It will delete the AutoFilter dropdowns
It will delete the DataValidation(List option) dropdowns
Excel crash if there are comments on the sheet

See this page for other code
http://www.rondebruin.nl/controlsobjectsworksheet.htm




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm



"Don Guillett" wrote in message
...
Sub NOSHAPES()' Removes ALL SHAPES
For Each WS In ThisWorkbook.Sheets
For Each SH In WS.Shapes
SH.Delete
Next SH
Next WS
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
Already sent you the file, thanks.

"Don Guillett" wrote:

If desired, send your file to my address below. I will only
look if:
1. You send a copy of this message on an inserted sheet
2. You give me the newsgroup and the subject line
3. You send a clear explanation of what you want
4. You send before/after examples and expected results.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karina" wrote in message
...
I have an excel sheet in wich I paste everyday new information,
replacing
the
previous day information. There's a clipart that has been pasted
over and
over, now the file is very slow and I can't erase all the cliparts
(thousands). In excel 2003 it was possible to select all the
cliparts in
one
step, now in 2007 I can't and it's impossible for me to erase the
cliparts
one by one.

Please help!

.




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:17 PM.


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