Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Open selected path when clicking a button

Hi,

have a table with 3 columns x, y and z. In column z is the path of a file.

I want to create a button which copy the path from a selected value in column x to the clipboard an opens the path in the explorer.

Could anyone help?

1 Solution

Accepted Solutions
brenner_martina
Partner - Specialist II
Partner - Specialist II

Hi, Charlie,

there is an integrated action in Qlikview, to open files, see attached example.

Greetings from Munich

Martina

EVACO GmbH

View solution in original post

3 Replies
sbaldwin
Partner - Creator III
Partner - Creator III

Hi, you couly use the only function and the lauch external application action on a button to open the folder andthen add an action that runs  a macro something like this:

ActiveDocument.GetSheetObject("BU01").CopyTextToClipboard

where BU01 has the text =only(your_field_containing_path)

i've attached an eg.

Thanks

Steve

Sub mycopy
ActiveDocument.GetSheetObject("BU01").CopyTextToClipboard

end Sub

brenner_martina
Partner - Specialist II
Partner - Specialist II

Hi, Charlie,

there is an integrated action in Qlikview, to open files, see attached example.

Greetings from Munich

Martina

EVACO GmbH

Not applicable
Author

Thanks a lot!

Both ways are working 🙂