Some recalcitrant custom cell styles

Z

Zarky des Bois !

Hi,

I had a problem with multiple custom cell styles that don't allow me
to convert an excel 2007 file to excel 2003.

I found a VBA example to delete all those custom cell styles easily:
Sub style_remove()
On Error Resume Next
Dim mpStyle As Style
For Each mpStyle In ActiveWorkbook.Styles
If Not mpStyle.BuiltIn Then
mpStyle.Delete
End If
Next mpStyle
End Sub

But there are some recalcitrant custom cell styles like:
386grabber=VGA.3GR
_100301_VC outlook Oral Care France
shell=progman.exe
m
AeE­ [0]_INQUIRY ¿µ¾÷AßAø
AeE­_INQUIRY ¿µ¾÷AßAø
AÞ¸¶ [0]_INQUIRY ¿?¾÷AßAø
AÞ¸¶_INQUIRY ¿?¾÷AßAø
C?AØ_¿?¾÷CoE²
C?AØ_¿µ¾÷CoE²
Ò»°ã_BRANDTTL
Porcentagem_06'97
??_(A1)BOQ

and even if I try to delete them manually, I hear a system sound (but
no error message is displayed) and the cell styles selection screen is
closed before I can right-click on custom cell style. It looks like
invalid character...

do you have an idea to definitively delete those recalcitrant custom
cell styles ??

Many thanks, Zarkoff
 

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