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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Navigating between qvw documents

Hi,

I need to navigate between sheets and upon navigating, I have to open a specific sheet in the destination qvw.

Could anyone please help on this.              

Thanks.

5 Replies
MK_QSL
MVP
MVP

Create a text box

Action

Add

External

Open QlikView Document

Under Document... Give the path of the file

Anonymous
Not applicable
Author

Manish,

Thanks for your reply.

I did that but I have to open a specific sheet in the destination document.

I have tried giving "Activate Sheet" action after the "Open QlikView Document" action but it is not working.

MK_QSL
MVP
MVP

Didn't get your idea... Can you provide sample file?

Anonymous
Not applicable
Author

The requirement is simple.

When I click a button in FileA.qvw it should open FileB.qvw. I did that using "Open QlikView Document" action.

But when FileB.qvw is opened, it should open a specific sheet in the FileB.qvw, which I have to define.

Not applicable
Author

Create an On Open trigger that runs the macro below

Sub OnOpen

ActiveDocument.Sheets("SH25").Activate

End Sub