
Not applicable
2014-04-29
06:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Like function in Current Selections
Hi,
I'm looking for a way to check if a value 'X' is part of my selection.
for example if I select values: 1,2,3,4,5,6 my DATA field
I want to verify that the value '3 'is part of my selection
?
any idea?
- Tags:
- like
813 Views
1 Solution
Accepted Solutions

Master III
2014-04-29
07:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
GetCurrentSelections(DATA) like '*,3,*'
Or
Index(GetCurrentSelections(DATA),',3,')
473 Views
5 Replies


Specialist
2014-04-29
06:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Use:
FieldIndex('Data','X') and check that value returns is larger than zero
473 Views

MVP
2014-04-29
06:57 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Write below in Text Box
=IF(SubStringCount(Concat(YourFieldName, '|'), 'B'),'Yes','No')
If you select single or multiple values from your Field and if it contains B, you will get Yes otherwise No
473 Views

Master III
2014-04-29
07:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
GetCurrentSelections(DATA) like '*,3,*'
Or
Index(GetCurrentSelections(DATA),',3,')
474 Views

Not applicable
2014-04-29
07:23 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
what about the negation ? Not Like doesnt work.
473 Views

Master III
2014-04-29
07:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Not(GetCurrentSelections(DATA) like '*,3,*')
473 Views
