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: 
BuTbka
Creator
Creator

Functions in Must_Include QlikView

Hi!
I use external qvs scripts with the same name as qvw file. Code in the qvw script:

 

LET vDocName = Replace(DocumentName(), '.qvw', '.qvs');
$(Must_Include=$(vDocName)); 

 

I can not use binary load with this code.
I need something like this 

 

$(Must_Include=$(Replace(DocumentName(), '.qvw', '.qvs'))); 

 

But this does not work.
Is there any workaround for this? Maybe exist any system variable with document name?

Labels (2)
2 Replies
Vegar
MVP
MVP

This might work.

$(Must_Include=$(=Replace(DocumentName(), '.qvw', '.qvs'));
BuTbka
Creator
Creator
Author


@Vegar wrote:
This might work.

unfortunately no (