Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi folks,
I have input box ExcludeKeyword variable, where I type what I want to exclude from name of tags.
I want to exclude dynamically all tags from field Keyword
Count({<[Keyword]=-{'*coat*'}>}Keyword) -----------it works
Please help me to add my variable ExcludeKeyword instead of "coat" to my expression.
Thanks,
Hi.
Have you tried $-sign expansion ?
Count({<[Keyword]=-{'*$(ExcludeKeyword)*'}>}Keyword)
Hi.
Have you tried $-sign expansion ?
Count({<[Keyword]=-{'*$(ExcludeKeyword)*'}>}Keyword)
I thought it wouldn't work, because it's between ' '.
Thank you.