It appears that the VBA argument "xlBitmap" in Excel
2007 doesn't
function as it should
If I
manually copy an embedded
chart (or a
range that includes data cells and an embedded chart) using Copy as Picture and select "As Shown on Screen" and "As Bitmap," the item copied to the clipboard is, indeed, a bitmap. If i perform the exact same action in VBA using
VB: AutoLinked keywords will cause extra spaces before keywords. Extra spacing is NOT transferred when copy/pasting, but IS if the keyword uses "quotes".
Selection.CopyPicture Appearance:=xlScreen,
Format:=xlBitmap
,
then the item copied to the clipboard in NOT a bitmap, but a metafile.
I have macros that copy numerous charts and ranges as pictures and pastes them in powerpoint as pictures, but in XL07, the are always being copied as metafiles and ppt
errors out if I use the
VB: AutoLinked keywords will cause extra spaces before keywords. Extra spacing is NOT transferred when copy/pasting, but IS if the keyword uses "quotes".
PPSlides.Shapes.PasteSpecial(ppPastebitmap)
vba function.
I would use the metafile format, but in Office 2007, they are a mess. I was hoping to copy and paste as bitmaps, but it's not working.
Anyone else observed this bit of strangeness? Or is it just me?