
Creator II
2018-11-08
05:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What is the difference between Index and FindOneOf
I see that both functions, Index and FindOneOf, pretty much do the same thing:
- Tags:
- qlikview_scripting
379 Views
1 Solution
Accepted Solutions


Employee
2018-11-08
10:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Index is looking for a substring (all characters in substring)
eg
Index('thequickbrownfox', 'kb') Returns 8
FindOneOf is looking for any character
eg
Index('thequickbrownfox', 'hx') Returns 2
1 Reply


Employee
2018-11-08
10:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Index is looking for a substring (all characters in substring)
eg
Index('thequickbrownfox', 'kb') Returns 8
FindOneOf is looking for any character
eg
Index('thequickbrownfox', 'hx') Returns 2
