Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the following 'Not Match' function:
If( Not Match(_View, 'Patent Analytics' , 'FDA Analytics') , _View)
Can the string 'Patent Analytics', 'FDA Analytics' be replaced with a variable and use the variable in the function? If so, how can this be accomplished.
Regards.
Hi Christopher,
Try,
Variable Name: vList
Definition: 'Patent Analytics' , 'FDA Analytics'
= If(Not Match(_View,$(vList) ), _View)
Hi Christopher,
Try,
Variable Name: vList
Definition: 'Patent Analytics' , 'FDA Analytics'
= If(Not Match(_View,$(vList) ), _View)
try this
create the variable like below
set vMatch='Patent Analytics' , 'FDA Analytics';
and write the condition like that using variable
If( Not Match(_View, $(vMatch)) , _View)
hope this help
Regards
Ahmar
Define variable (say, vExclude) like : 'Patent Analytics','FDA Analytics'
Note, No '=' sign; ignore error red marks. Then :
If( Not Match(_View, $(vExclude)) , _View)
THANK YOU
Thank you Ahmar
Tresses thank you