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: 
Not applicable

Macro

HI,

I need to copy Qlikview chart value into clipboard and need to get that value in Qlivkiew.I wrote macro as

 

sub Test

ActiveDocument.GetSheetObject("CH131").CopyTableToClipboard true

This will copy chart 131 value into Clipboard.

I am not getting how to paste it in Qlikview.

Can anyone please help ASAP.

Labels (1)
2 Replies
tresB
Champion III
Champion III

Where do you want it to paste? QlikView sheet? I guess that is not possible. You can rather export it to excel or so like:

Doc.GetSheetObject(var).CopyTableToClipBoard TRUE

xlApp.ActiveSheet.Paste

jagan
Partner - Champion III
Partner - Champion III

Hi,

Where you want to Paste this?  Just press Ctrl+ v as the value is on clipboard.  or check for Send keys in macro.

SendKeys "^ve~"

Regards,

Jagan.