Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
]
;
Hello!
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
]
;
Hi,
And what about this:
LOAD
* Inline
[
country, continent
india, asia
china, asia
nepal, asia
italy, europe
]
;
excellent dude