Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
title suggests it all.
i have a model that reads in lots of data counts various things then drops the data and displays a table of the various counts.
(it reads in from many sources so the data has to be dropped or the size of the model would be in GBs.)
so i wanted to put in a link to the models where the detail is held. i can use a macro to open it but cant quite get the code right.
but then i want the model to open with multiple selections so it shows what the count was showing in the 1st model. so i used a bookmark.
How do i get a model to launch another model (in IE) and apply a bookmark?
thanks
You can use a button with the "Open QlikView Document" Action, with "Transfer State" selected, it will open another document and transfer any selections between Fields of the same name.
Does anybody know if this is also possible using a macro...
I noticed the 'OpenDoc' and 'OpenDocEx' funtions, but I don't know what the parameters serve for...
Is it even possible to use these functions to jump?
Sub Jumping
Set App = ActiveDocument.GetApplication
Set newdoc = App.OpendocEx("qvw - invoices.qvw","","")
End Sub