I need to filter on the multiple destination location where if i add a comma seperator next to a text i am not able to filter. Suggest me how can i filter on mutiple location names.. like i need to filter on locations of london,paris,frankfurt..!
Hi Ashwini,
Or filtering is not possible using the 'Contains' filter method. You can achieve your desired result using the 'Regex' method. For example: '^(WoutMH|Test Element 1)$' will show all elements with the name 'WoutMH' OR 'Test Element 1'. You can do something similar for your locations.
Hi Ashwini,
I believe in this case you could use the regex expression. When using regular expressions you can define an OR condition. I remember there was a similar question:
Dashboards – Filters on queries
Hope it helps.