Hi, I have a table with a text field that holds different values. I’m only interested in those that are “;”-separated numbers, i.e.: 3530000131277;3530000131482;3530000147414 or just 3530000147414 is there a way to set a filter on this field to get only those rows I’m interested in or the only way is to manually check them all? best regards, Fufik
I hope you have something to recognize your numbers by. In my example I assume that all of your numbers start with 353 and have a fixed length. Filter = 353???
Number length is fixed, but as I said some rows may contain something like this for example ‘blabla’ and unfortunatelly I can not assume 35* for a start. regular expression would do the trick, not here though.