Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
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.