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

field value group

hi i have a field  (Name ) which has following value   ,

AA BB CC DD  i want to  to have AA, BB   as BA   and rest as same way 

 

1 Reply
Saravanan_Desingh

Are you looking something like this?

Mapper:
Mapping
LOAD F1,'BA' INLINE [
    F1
    AA
    BB
];

tab1:
LOAD F1, ApplyMap('Mapper',F1) As F2 INLINE [
    F1
    AA
    BB
    CC
    DD
];

commQV29.PNG