Skip to main content
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

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
Luminary Alumni
Luminary Alumni

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