Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I have a inline table for illustrate the model i want as below,
Load * Inline[
Name, Brand,Country
Tom,Abc,Canda
Marry,TNT,China
Jerry,ANT,USA
Kitty,Abc,-
Betty,TNT,-];
If i want to set once the brand is Abc, the blank value in country field will automatically label as Canda(Kitty case). Brand is TNT, the blank value can be auto fill as China(Betty case)
Can i use any qlikvie script to acheive above purpose? Above inline is only a example, i want to use this technique to fill in my business model,
Thanks for everyone who can answer me. Tks!
If it's as "simple" as that, you can use ApplyMap() to return the country name based on the brand.
This function takes three parameters:
If it's as "simple" as that, you can use ApplyMap() to return the country name based on the brand.
This function takes three parameters:
Tks it. Work. And helpful!