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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
julioarriaga
Creator II
Creator II

What is the difference between Index and FindOneOf

1 Solution

Accepted Solutions
rubenmarin1

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
rubenmarin1

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