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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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