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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

string function

Hi,

i have a table like this. in this i want the person who are working as a manager. How can i get.please help me

Labels (1)
1 Solution

Accepted Solutions
er_mohit
Master II
Master II

try this

if(Wildmatch(fieldname,'*Manager'),fieldname) as Manager

View solution in original post

5 Replies
Not applicable
Author

Sorry i forgot to add the image

Please help me

richard_pearce6
Partner - Specialist
Partner - Specialist

You could use index()

if(index(Title,'Manager')>0,1,0) as ManagerFlag

This will give you a field in the data

1 = 'Manager' was found in the title field

0 = 'Manager' was NOT found in the title field

Regards

Richard

QlikCentral.Com

er_mohit
Master II
Master II

try this

if(Wildmatch(fieldname,'*Manager'),fieldname) as Manager

Not applicable
Author

Thank  You I work Thank you for your help

anbu1984
Master III
Master III

if(fieldname Like '*Manager*',fieldname) as Manager