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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
julioarriaga
Creator II
Creator II

What is the difference between Index and FindOneOf

Labels (1)
1 Solution

Accepted Solutions
rubenmarin
MVP
MVP

Hi, Index searchs the full string, FindOneOf looks for any of the characters.

 

FindOneOf(Field, '0123456789') -> Returns >0 if there is a number (any digit) in the field

Index(Field, '0123456789') -> Returns >0 only if the full string '0123456789' is found

View solution in original post

1 Reply
rubenmarin
MVP
MVP

Hi, Index searchs the full string, FindOneOf looks for any of the characters.

 

FindOneOf(Field, '0123456789') -> Returns >0 if there is a number (any digit) in the field

Index(Field, '0123456789') -> Returns >0 only if the full string '0123456789' is found