I'm trying to copy a worksheet that contains a drawing. If the file is an .xls, the drawing copies over but if the file is an xlsx it doesn't. I'm using code similar to the following:
wb.Open("Book1.xlsx");
Worksheet wks = wb.Worksheets.Add("New Sheet");
wks.Copy(wb.Worksheets["Sheet1"]);
wb.Save("Updated.xlsx");