Is it possible to bulk search for results?
Is it possible to bulk search for results?
adolfo.vargas15
Posts: 3Questions: 1Answers: 0
Is it possible to search results in bulk?
For example, I have a list with rows "Monday" "Tuesday" "Wednesday" "Thursday" and "Friday".
Is there a way I can enter for example "Monday, Wednesday, Friday", and have only those 2 rows displayed on the table?
Answers
Are you saying you want to display the three rows with "Monday, Wednesday, Friday" or the two rows with "Tuesday, Thursday"?
See if this example with regex searching helps.
Kevin
Sorry I partly edited the example, if I enter "Monday, Wednesday, Friday", I would like to thee see rows "Monday, Wednesday, Friday".
You would use a regex search term. Maybe
Monday|Tuesday|Wednesday
for example. Try it out with regex mode in the example I linked.Kevin
Thank you so much!