If you need to filter only negative numbers, you can use ""InStr"" function, for example: ""InStr([Collection.Field1];""-"") > 0"", and then copy found value to another collection.
InStr function works like Regex in OOP languages (looking for matches in strings which need to find).
If I understood you correctly.