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

Taking Screenshots

Hello

Is there anyway I could add a button and assign a action to take the screenshot of current sheet?

I know this is available out of the box by right clicking on sheet and selecting "Copy Image to Clipboard" but wondering if I could assign this to a button?

Many Thanks

1 Solution

Accepted Solutions
Gysbert_Wassenaar

You could create a macro for this

Sub ShootScreen

     ActiveDocument.ActiveSheet.CopyBitmapToClipboard

End Sub

You can add a Run Macro action to the button to run the macro the button is clicked.


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

You could create a macro for this

Sub ShootScreen

     ActiveDocument.ActiveSheet.CopyBitmapToClipboard

End Sub

You can add a Run Macro action to the button to run the macro the button is clicked.


talk is cheap, supply exceeds demand
Not applicable
Author

HI Does this work on browser? It doesn't work for me though. Thanks.