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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to merge team member name as one in List Box


Hi,

I have Team member with same name as Micheal Sunie and Micheal Sunie MFR in List box. My user wnats to have only Micheal Sunie MFR in List box.

Could anyone help me is there any way to merge theses two and have only Micheal Sunie MFR.

Thanks.

15 Replies
vikasmahajan

Please upload sample application to help you in better way

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Not applicable
Author

Hi,

If this is an issue with single name, you can use simple if condition in script as,

If( Team member = 'Micheal Sunie' , 'Micheal Sunie MFR' ,  Team member) as  Team member

U can use this in list box expression too.

If( Team member = 'Micheal Sunie' , 'Micheal Sunie MFR' ,  Team member)

Hope this helps.

rustyfishbones
Master II
Master II

try using REPLACE() in the script

REPLACE(Team Member,'Michael Sunie','Michael Sunie MRF') as Team Member

bruno_m_santos
Partner - Creator
Partner - Creator

Build an expression, like this

=mid (field, 1, len(field)-3)

or put in script another field

Bruno

Not applicable
Author

Thanks and this is working.

kiranmanoharrode
Creator III
Creator III

Dear Amelia,

               Just create Expression in list box (last Dimension in list of Dimension).

=If(Wildmatch([Team Member],'Michael Sunie MRF')),[Team Member]

Regards

Kiran Rode

+8976977897