Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
rsdhavle
Creator II
Creator II

Using If condition to concatenate QVD based on variable value

How can we concatenate QVD based on If condition if we have a variable with some value

1 Reply
Lauri
Specialist
Specialist

If you mean you want to load data from a QVD and concatenate to a table in Sense, then:

If $(myVariable) = 10 Then

Concatenate (myTable)

Load * From myQVD.qvd (qvd);

End If