Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I was trying to create a match function where the values to match with are dynamic by a field. I thought of something like this but it's not working:
=match( 'D', concat(distinct(FIELD), ', '))
and FIELD is something like this
FIELD |
---|
A |
B |
C |
D |
E |
F |
so if 'D' is present within FIELD it should give a number >0 (in this case 4). does anyone know if this is possible?
your help would be much appreciated
regard,
Peter
You'll need to do something similar to this:
match('D', $(=concat(distinct chr(39) & FIELD & chr(39), ','))
Hope this helps!
Try this
=match( concat(distinct(FIELD), ', '), 'D')
You'll need to do something similar to this:
match('D', $(=concat(distinct chr(39) & FIELD & chr(39), ','))
Hope this helps!
try this:
max(Match(FIELD,'D'))>0
if this = 1 so 'D' is present within FIELD
Hope this helps
MC
define a variable
v =chr(39) & GetFieldSelections(FIELD, chr(39) & ',' & chr(39)) & chr(39)
expression should be
=match('D', $(v))
see attachment
This is exactly what i need thanks!