Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

In trigger_condition

Hi,

i have script as follows:

 

LOAD

* Inline

[
countries
india
china
nepal
italy
asia
europe
]

;
Requirement:

if i select asia; india,china,nepal must be selected and if i select europe; italy must be selected

in trigger how do i to write condition something like below:

=if('asia',...)
@hic

1 Solution

Accepted Solutions
robert_mika
Master III
Master III

Europe and Asia are not countries.

Would this not misleading to your users/clients?

Why not add another column

Continent

* Inline

[
countries,continent,
india,asia
china,asia
nepal,asia
italy,europe

]

;

View solution in original post

4 Replies
pokassov
Specialist
Specialist

Hello!

5.png

robert_mika
Master III
Master III

Europe and Asia are not countries.

Would this not misleading to your users/clients?

Why not add another column

Continent

* Inline

[
countries,continent,
india,asia
china,asia
nepal,asia
italy,europe

]

;

fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

And what about this:

LOAD

* Inline

[
country, continent
india, asia
china, asia
nepal, asia
italy, europe
]

;

Not applicable
Author

excellent dude