Corrupt drawing in Excel

nyconfidential

New Member
Joined
Jul 22, 2015
Messages
49
Office Version
  1. 365
  2. 2016
Hi all, I'm getting an error message whenever I open up a particular workbook - it asks me to repair, if I say yes I get a dialog box that says "Excel was able to open the file by repairing or removing the unreadable content - Repaired Records: Drawing from /xl/drawings/drawing20.xml part(Drawing Shape)" (Essentially the same problem that was described in this thread: https://www.mrexcel.com/forum/excel...drawings-drawing9-xml-part-drawing-shape.html)

My question is - can I find out exactly which drawing is causing the error? It's a large workbook with lots of drawings - I've tried to loop through all of the shapes objects in the workbook via vba but nothing is actually named drawing20, I'm assuming it's some sort of code name. Appreciate the help, thanks.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
drawing20.xml is the name of a xml file where 1 or several drawings are described (including their names). The drawings may be charts, slicers, images, command button faces etc. (one of the attributes included is NAME).
XLSX and XLSM files are actually a ZIP archive of many such XML and other files. /xl/drawings/drawing20.xml is the path to the xml file in the archive. The actual drawing file is somewhere else (\media, \charts, \drawings, etc.) - path to it can be found by examining the respective XML files in \xl\drawings\_rels\.
The error may be in the xml structure or in the drawing file itself.
 
Upvote 0
drawing20.xml is the name of a xml file where 1 or several drawings are described (including their names). The drawings may be charts, slicers, images, command button faces etc. (one of the attributes included is NAME).
XLSX and XLSM files are actually a ZIP archive of many such XML and other files. /xl/drawings/drawing20.xml is the path to the xml file in the archive. The actual drawing file is somewhere else (\media, \charts, \drawings, etc.) - path to it can be found by examining the respective XML files in \xl\drawings\_rels\.
The error may be in the xml structure or in the drawing file itself.


Thanks Bobsan - appreciate you taking the time to break this down for me, will investigate.
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,436
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top