Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I need to set ac action which selects several values in a field.
E.g. 'First value' & 'Second value'.
How can I do it?
Thank you in advance,
Larisa
Use as search string
("First Value"|"Second Value")
use
("[first value]" |" [second value]")
or
='(' & Concat({<Frstvalue={'A'}, secondvalue={'B'}>} Distinct '"'&filedname&'"', '|') &')'
'"' -> double quote(") with single quotes
chk dis
Thank you!