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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
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.