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: 
rsdhavle
Creator III
Creator III

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