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 Reply
dplr-rn
Partner - Master III
Partner - Master III

FindOneOf returns first occurance of any of character mentioned in the second parameter. in below example FindOneOf is not searching for 'cd' but c or d; while index searches for 'cd'

Index( 'acbcdefg', 'cd' ) returns 4

=FindOneOf( 'acbcdefg', 'cd' ) returns 2