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

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 II
Creator II
Author


@Vegar wrote:
This might work.

unfortunately no (