Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
aveeeeeee7en
Specialist III
Specialist III

Apply Map Help

Hi Community

I need some changes. Please see the Attached qvw.

Regards

Aviral Nag

3 Replies
chiru_thota
Specialist
Specialist

See attached QVW. Just.Just I used set analysis.

I don't see any issue with your apply map.

Applymap.jpg

aveeeeeee7en
Specialist III
Specialist III
Author

Thanks for your reply.

But I need the logic from Back-end.

Not applicable

Hi ,

try this

 

AAA:

Mapping Load * Inline [
code, New
11 , BBB
12, SSS
]
;

AAA:
Load * Inline [
name, code, Dept
Ron , 11, aa
, 11, cc
John, 12, ss
, 13, cc
]
;

Res:
Load *,
name&code&Dept as Key,
Applymap('AAA',code,'NULL') AS New11
Resident AAA
Where name&code&Dept<>'11cc';

Drop Table AAA;

Drop Field Key;