Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

ActiveDocument.ActiveSheet.CopyBitmapToClipboard is not copying the whole sheet image

Hi,

I am trying to copy and paste the image of my sheet using this macro:

ActiveDocument.ActiveSheet.CopyBitmapToClipboard TRUE

However, this is not copying the full sheet.

I even tried Fit Zoom to window. But it is not working

Any solution wherein I can get image of my full sheet.

Thanks

Krati

1 Reply
Almorais
Contributor
Contributor

Hello.

Try to do this:

ActiveDocument.ActivateSheet("NAMESHEET")
ActiveDocument.ActivateSheet("NAMESHEET").ExportBitmapToFile "YOUR_ADDRESS\FILENAME.png"

Have a good job.