Skip to main content
Solved

I would like to filter specific items from a list which contains multiple criteria. Would this be possible with ListElementFilter?

  • September 23, 2020
  • 2 replies
  • 131 views

rva1
Contributor
Forum|alt.badge.img+1

I'm using Filtertype: Contains, and I would like to add muliple string values to Match Expression, like "string A" OR "string B" OR "string C". I've tried creating a User Parameter, but it didn't work... any idea's?

Best answer by ebygomm

It doesn't look like the ListElementFilter allows for multiple string filtering using Contains, you might be able to use the Regex match to do the same thing though

e.g. use Regular Expression Match and

string A|string B|string C

 

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

ebygomm
Influencer
Forum|alt.badge.img+46
  • Influencer
  • Best Answer
  • September 23, 2020

It doesn't look like the ListElementFilter allows for multiple string filtering using Contains, you might be able to use the Regex match to do the same thing though

e.g. use Regular Expression Match and

string A|string B|string C

 


rva1
Contributor
Forum|alt.badge.img+1
  • Author
  • Contributor
  • September 23, 2020

It doesn't look like the ListElementFilter allows for multiple string filtering using Contains, you might be able to use the Regex match to do the same thing though

e.g. use Regular Expression Match and

string A|string B|string C

 

tnx for your reply...

that def did the trick;)

thank you!